|
1
|
|
/* Aalto XML processor |
|
2
|
|
* |
|
3
|
|
* Copyright (c) 2006- Tatu Saloranta, tatu.saloranta@iki.fi |
|
4
|
|
* |
|
5
|
|
* Licensed under the License specified in the file LICENSE which is |
|
6
|
|
* included with the source code. |
|
7
|
|
* You may not use this file except in compliance with the License. |
|
8
|
|
* |
|
9
|
|
* Unless required by applicable law or agreed to in writing, software |
|
10
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
|
11
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
12
|
|
* See the License for the specific language governing permissions and |
|
13
|
|
* limitations under the License. |
|
14
|
|
*/ |
|
15
|
|
|
|
16
|
|
package com.fasterxml.aalto.async; |
|
17
|
|
|
|
18
|
|
import java.nio.ByteBuffer; |
|
19
|
|
|
|
20
|
|
import javax.xml.stream.XMLStreamException; |
|
21
|
|
|
|
22
|
|
import com.fasterxml.aalto.*; |
|
23
|
|
import com.fasterxml.aalto.in.*; |
|
24
|
|
import com.fasterxml.aalto.util.DataUtil; |
|
25
|
|
//import com.fasterxml.aalto.util.XmlConsts; |
|
26
|
|
import com.fasterxml.aalto.util.XmlCharTypes; |
|
27
|
|
|
|
28
|
|
/** |
|
29
|
|
* This is the base class for asynchronous (non-blocking) XML |
|
30
|
|
* scanners. Due to basic complexity of async approach, character-based |
|
31
|
|
* doesn't make much sense, so only byte-based input is supported. |
|
32
|
|
*/ |
|
33
|
|
public class AsyncByteBufferScanner |
|
34
|
|
extends AsyncByteScanner |
|
35
|
|
implements AsyncByteBufferFeeder |
|
36
|
|
{ |
|
37
|
|
|
|
38
|
|
/* |
|
39
|
|
/********************************************************************** |
|
40
|
|
/* Input buffer handling |
|
41
|
|
/********************************************************************** |
|
42
|
|
*/ |
|
43
|
|
|
|
44
|
|
/** |
|
45
|
|
* This buffer is actually provided by caller |
|
46
|
|
*/ |
|
47
|
|
protected ByteBuffer _inputBuffer; |
|
48
|
|
|
|
49
|
|
/** |
|
50
|
|
* In addition to current buffer pointer, and end pointer, |
|
51
|
|
* we will also need to know number of bytes originally |
|
52
|
|
* contained. This is needed to correctly update location |
|
53
|
|
* information when the block has been completed. |
|
54
|
|
*/ |
|
55
|
|
protected int _origBufferLen; |
|
56
|
|
|
|
57
|
|
|
|
58
|
|
/* |
|
59
|
|
/********************************************************************** |
|
60
|
|
/* Instance construction |
|
61
|
|
/********************************************************************** |
|
62
|
|
*/ |
|
63
|
|
|
|
64
|
|
public AsyncByteBufferScanner(ReaderConfig cfg) |
|
65
|
|
{ |
|
66
|
|
super(cfg); |
|
67
|
|
// must start by checking if there's XML declaration... |
|
68
|
6
1. : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PROLOG_INITIAL; |
|
69
|
6
1. : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = EVENT_INCOMPLETE; |
|
70
|
|
} |
|
71
|
|
|
|
72
|
|
@Override |
|
73
|
|
public String toString() { |
|
74
|
4
1. toString : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → NO_COVERAGE
2. toString : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
3. toString : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
4. toString : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::toString to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return "asyncScanner; curr="+_currToken+" next="+_nextEvent+", state = "+_state; |
|
75
|
|
} |
|
76
|
|
|
|
77
|
|
/* |
|
78
|
|
/********************************************************************** |
|
79
|
|
/* Parsing, comments |
|
80
|
|
/********************************************************************** |
|
81
|
|
*/ |
|
82
|
|
|
|
83
|
|
protected int parseCommentContents() throws XMLStreamException |
|
84
|
|
{ |
|
85
|
|
// Left-overs from last input block? |
|
86
|
7
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parseCommentContents : negated conditional → KILLED
3. parseCommentContents : changed conditional boundary to IFGE → KILLED
4. parseCommentContents : changed conditional boundary to IFGT → KILLED
5. parseCommentContents : changed conditional boundary to IFLE → KILLED
6. parseCommentContents : changed conditional boundary to IFLT → KILLED
7. parseCommentContents : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { // CR, multi-byte, or '-'? |
|
87
|
|
int result = handleCommentPending(); |
|
88
|
|
// If there's not enough input, or if we completed, can leave |
|
89
|
6
1. parseCommentContents : changed conditional boundary to IFLE → SURVIVED
2. parseCommentContents : negated conditional → KILLED
3. parseCommentContents : changed conditional boundary to IFGE → KILLED
4. parseCommentContents : changed conditional boundary to IFGT → KILLED
5. parseCommentContents : changed conditional boundary to IFLT → KILLED
6. parseCommentContents : changed conditional boundary to IFNE → KILLED
|
if (result != 0) { |
|
90
|
1
1. parseCommentContents : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return result; |
|
91
|
|
} |
|
92
|
|
// otherwise we should be good to continue |
|
93
|
|
} |
|
94
|
|
|
|
95
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] outputBuffer = _textBuilder.getBufferWithoutReset(); |
|
96
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
int outPtr = _textBuilder.getCurrentLength(); |
|
97
|
|
|
|
98
|
2
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
|
final int[] TYPES = _charTypes.OTHER_CHARS; |
|
99
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
ByteBuffer inputBuffer = _inputBuffer; |
|
100
|
|
|
|
101
|
|
main_loop: |
|
102
|
|
while (true) { |
|
103
|
|
int c; |
|
104
|
|
// Then the tight ASCII non-funny-char loop: |
|
105
|
|
ascii_loop: |
|
106
|
|
while (true) { |
|
107
|
9
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCommentContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCommentContents : changed conditional boundary → TIMED_OUT
5. parseCommentContents : negated conditional → TIMED_OUT
6. parseCommentContents : changed conditional boundary to IF_ICMPEQ → TIMED_OUT
7. parseCommentContents : changed conditional boundary to IF_ICMPGE → TIMED_OUT
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
108
|
|
break main_loop; |
|
109
|
|
} |
|
110
|
7
1. parseCommentContents : changed conditional boundary → SURVIVED
2. parseCommentContents : changed conditional boundary to IF_ICMPNE → SURVIVED
3. parseCommentContents : negated conditional → KILLED
4. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
5. parseCommentContents : changed conditional boundary to IF_ICMPGE → KILLED
6. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
7. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outPtr >= outputBuffer.length) { |
|
111
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
112
|
5
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
113
|
|
} |
|
114
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
int max = _inputEnd; |
|
115
|
|
{ |
|
116
|
3
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : Replaced operate with second operand → KILLED
3. parseCommentContents : Replaced operate with second operand → KILLED
|
int max2 = _inputPtr + (outputBuffer.length - outPtr); |
|
117
|
7
1. parseCommentContents : changed conditional boundary → SURVIVED
2. parseCommentContents : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseCommentContents : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseCommentContents : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parseCommentContents : negated conditional → KILLED
6. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCommentContents : changed conditional boundary to IF_ICMPLT → KILLED
|
if (max2 < max) { |
|
118
|
|
max = max2; |
|
119
|
|
} |
|
120
|
|
} |
|
121
|
8
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. parseCommentContents : negated conditional → TIMED_OUT
4. parseCommentContents : changed conditional boundary to IF_ICMPLT → TIMED_OUT
5. parseCommentContents : changed conditional boundary to IF_ICMPNE → TIMED_OUT
6. parseCommentContents : changed conditional boundary → KILLED
7. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
|
while (_inputPtr < max) { |
|
122
|
14
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. parseCommentContents : Replaced operate with second operand → KILLED
11. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
12. parseCommentContents : Replaced bitwise AND with OR → KILLED
13. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) inputBuffer.get(_inputPtr++) & 0xFF; |
|
123
|
6
1. parseCommentContents : changed conditional boundary to IFLE → SURVIVED
2. parseCommentContents : changed conditional boundary to IFLT → SURVIVED
3. parseCommentContents : negated conditional → KILLED
4. parseCommentContents : changed conditional boundary to IFGE → KILLED
5. parseCommentContents : changed conditional boundary to IFGT → KILLED
6. parseCommentContents : changed conditional boundary to IFNE → KILLED
|
if (TYPES[c] != 0) { |
|
124
|
|
break ascii_loop; |
|
125
|
|
} |
|
126
|
5
1. parseCommentContents : Changed increment from 1 to -1 → KILLED
2. parseCommentContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parseCommentContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parseCommentContents : UOI Mutator: Removed unary increment of local variable → KILLED
5. parseCommentContents : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
127
|
|
} |
|
128
|
|
} |
|
129
|
|
|
|
130
|
|
switch (TYPES[c]) { |
|
131
|
|
case XmlCharTypes.CT_INVALID: |
|
132
|
|
c = handleInvalidXmlChar(c); |
|
133
|
|
case XmlCharTypes.CT_WS_CR: |
|
134
|
|
{ |
|
135
|
9
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCommentContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCommentContents : changed conditional boundary → KILLED
5. parseCommentContents : negated conditional → KILLED
6. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCommentContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
136
|
6
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
137
|
|
break main_loop; |
|
138
|
|
} |
|
139
|
12
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseCommentContents : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseCommentContents : changed conditional boundary to IF_ICMPLT → SURVIVED
5. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
9. parseCommentContents : negated conditional → KILLED
10. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
12. parseCommentContents : changed conditional boundary to IF_ICMPGE → KILLED
|
if (inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
140
|
8
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parseCommentContents : Replaced operate with second operand → KILLED
8. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
141
|
|
} |
|
142
|
1
1. parseCommentContents : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
143
|
|
} |
|
144
|
5
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
5. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = INT_LF; |
|
145
|
|
break; |
|
146
|
|
case XmlCharTypes.CT_WS_LF: |
|
147
|
1
1. parseCommentContents : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
148
|
|
break; |
|
149
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
150
|
9
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCommentContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCommentContents : changed conditional boundary → KILLED
5. parseCommentContents : negated conditional → KILLED
6. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCommentContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
151
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
152
|
|
break main_loop; |
|
153
|
|
} |
|
154
|
|
c = decodeUtf8_2(c); |
|
155
|
|
break; |
|
156
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
157
|
15
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseCommentContents : Replaced operate with second operand → KILLED
7. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. parseCommentContents : changed conditional boundary → KILLED
9. parseCommentContents : negated conditional → KILLED
10. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
12. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
13. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
14. parseCommentContents : changed conditional boundary to IF_ICMPLT → KILLED
15. parseCommentContents : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 2) { |
|
158
|
10
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCommentContents : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parseCommentContents : changed conditional boundary → KILLED
5. parseCommentContents : negated conditional → KILLED
6. parseCommentContents : changed conditional boundary to IF_ICMPGE → KILLED
7. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCommentContents : changed conditional boundary to IF_ICMPLT → KILLED
10. parseCommentContents : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
159
|
15
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parseCommentContents : Replaced operate with second operand → KILLED
12. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parseCommentContents : Replaced bitwise AND with OR → KILLED
14. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
160
|
7
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parseCommentContents : Replaced Shift Left with Shift Right → KILLED
6. parseCommentContents : Replaced bitwise OR with AND → KILLED
7. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
161
|
|
} |
|
162
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
163
|
|
break main_loop; |
|
164
|
|
} |
|
165
|
|
c = decodeUtf8_3(c); |
|
166
|
|
break; |
|
167
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
168
|
15
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCommentContents : Replaced operate with second operand → NO_COVERAGE
5. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
6. parseCommentContents : changed conditional boundary → NO_COVERAGE
7. parseCommentContents : negated conditional → NO_COVERAGE
8. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. parseCommentContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. parseCommentContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. parseCommentContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. parseCommentContents : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. parseCommentContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 3) { |
|
169
|
10
1. parseCommentContents : changed conditional boundary → NO_COVERAGE
2. parseCommentContents : negated conditional → NO_COVERAGE
3. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. parseCommentContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. parseCommentContents : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. parseCommentContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. parseCommentContents : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. parseCommentContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
170
|
15
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. parseCommentContents : Replaced operate with second operand → NO_COVERAGE
9. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. parseCommentContents : Replaced bitwise AND with OR → NO_COVERAGE
11. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
171
|
7
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. parseCommentContents : Replaced Shift Left with Shift Right → NO_COVERAGE
6. parseCommentContents : Replaced bitwise OR with AND → NO_COVERAGE
7. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
172
|
10
1. parseCommentContents : changed conditional boundary → NO_COVERAGE
2. parseCommentContents : negated conditional → NO_COVERAGE
3. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. parseCommentContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. parseCommentContents : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. parseCommentContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. parseCommentContents : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. parseCommentContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
173
|
15
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. parseCommentContents : Replaced operate with second operand → NO_COVERAGE
9. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. parseCommentContents : Replaced bitwise AND with OR → NO_COVERAGE
11. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
174
|
7
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. parseCommentContents : Replaced Shift Left with Shift Right → NO_COVERAGE
6. parseCommentContents : Replaced bitwise OR with AND → NO_COVERAGE
7. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 16); |
|
175
|
|
} |
|
176
|
|
} |
|
177
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
178
|
|
break main_loop; |
|
179
|
|
} |
|
180
|
|
c = decodeUtf8_4(c); |
|
181
|
|
// Let's add first part right away: |
|
182
|
17
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. parseCommentContents : Changed increment from 1 to -1 → NO_COVERAGE
10. parseCommentContents : Replaced Shift Right with Shift Left → NO_COVERAGE
11. parseCommentContents : Replaced bitwise OR with AND → NO_COVERAGE
12. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. parseCommentContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. parseCommentContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. parseCommentContents : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. parseCommentContents : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
outputBuffer[outPtr++] = (char) (0xD800 | (c >> 10)); |
|
183
|
7
1. parseCommentContents : changed conditional boundary → NO_COVERAGE
2. parseCommentContents : negated conditional → NO_COVERAGE
3. parseCommentContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. parseCommentContents : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. parseCommentContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. parseCommentContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. parseCommentContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (outPtr >= outputBuffer.length) { |
|
184
|
1
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
185
|
5
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
186
|
|
} |
|
187
|
12
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. parseCommentContents : Replaced bitwise AND with OR → NO_COVERAGE
10. parseCommentContents : Replaced bitwise OR with AND → NO_COVERAGE
11. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
188
|
|
// And let the other char output down below |
|
189
|
|
break; |
|
190
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
191
|
1
1. parseCommentContents : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
192
|
|
case XmlCharTypes.CT_HYPHEN: // '-->'? |
|
193
|
9
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCommentContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCommentContents : changed conditional boundary → KILLED
5. parseCommentContents : negated conditional → KILLED
6. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCommentContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
194
|
6
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with One, Substituted -20 with 1 → KILLED
6. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_COMMENT_HYPHEN1; |
|
195
|
|
break main_loop; |
|
196
|
|
} |
|
197
|
13
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
7. parseCommentContents : negated conditional → KILLED
8. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
10. parseCommentContents : changed conditional boundary to IF_ICMPGE → KILLED
11. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
12. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
13. parseCommentContents : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_HYPHEN) { // ok, must be end then |
|
198
|
8
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parseCommentContents : Replaced operate with second operand → KILLED
8. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
199
|
9
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCommentContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCommentContents : changed conditional boundary → KILLED
5. parseCommentContents : negated conditional → KILLED
6. parseCommentContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCommentContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
200
|
6
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with One, Substituted -21 with 1 → KILLED
6. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_COMMENT_HYPHEN2; |
|
201
|
|
break main_loop; |
|
202
|
|
} |
|
203
|
20
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseCommentContents : changed conditional boundary to IF_ICMPGE → SURVIVED
5. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
12. parseCommentContents : Replaced operate with second operand → KILLED
13. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
14. parseCommentContents : negated conditional → KILLED
15. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
18. parseCommentContents : changed conditional boundary to IF_ICMPGT → KILLED
19. parseCommentContents : changed conditional boundary to IF_ICMPLT → KILLED
20. parseCommentContents : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputBuffer.get(_inputPtr++) != BYTE_GT) { |
|
204
|
1
1. parseCommentContents : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportDoubleHyphenInComments → NO_COVERAGE
|
reportDoubleHyphenInComments(); |
|
205
|
|
} |
|
206
|
2
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parseCommentContents : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
207
|
6
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
208
|
6
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
209
|
6
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
5. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseCommentContents : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return COMMENT; |
|
210
|
|
} |
|
211
|
|
break; |
|
212
|
|
// default: |
|
213
|
|
// Other types are not important here... |
|
214
|
|
} |
|
215
|
|
|
|
216
|
|
// Ok, can output the char (we know there's room for one more) |
|
217
|
5
1. parseCommentContents : Changed increment from 1 to -1 → KILLED
2. parseCommentContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parseCommentContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parseCommentContents : UOI Mutator: Removed unary increment of local variable → KILLED
5. parseCommentContents : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
218
|
|
} |
|
219
|
|
|
|
220
|
2
1. parseCommentContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parseCommentContents : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
221
|
6
1. parseCommentContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCommentContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCommentContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCommentContents : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. parseCommentContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseCommentContents : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
222
|
|
} |
|
223
|
|
|
|
224
|
|
/** |
|
225
|
|
* @return EVENT_INCOMPLETE, if there's not enough input to |
|
226
|
|
* handle pending char, COMMENT, if we handled complete |
|
227
|
|
* "-->" end marker, or 0 to indicate something else |
|
228
|
|
* was succesfully handled. |
|
229
|
|
*/ |
|
230
|
|
protected int handleCommentPending() throws XMLStreamException |
|
231
|
|
{ |
|
232
|
9
1. handleCommentPending : changed conditional boundary → SURVIVED
2. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleCommentPending : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleCommentPending : negated conditional → KILLED
6. handleCommentPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCommentPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
233
|
6
1. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleCommentPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
234
|
|
} |
|
235
|
12
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with One, Substituted -20 with 1 → KILLED
6. handleCommentPending : negated conditional → KILLED
7. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCommentPending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleCommentPending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleCommentPending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_COMMENT_HYPHEN1) { |
|
236
|
13
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
7. handleCommentPending : negated conditional → KILLED
8. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleCommentPending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleCommentPending : changed conditional boundary to IF_ICMPLT → KILLED
13. handleCommentPending : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputBuffer.get(_inputPtr) != BYTE_HYPHEN) { |
|
237
|
|
// can't be the end marker, just append '-' and go |
|
238
|
6
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
239
|
2
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleCommentPending : removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
_textBuilder.append("-"); |
|
240
|
6
1. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCommentPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
241
|
|
} |
|
242
|
8
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleCommentPending : Replaced operate with second operand → KILLED
8. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
243
|
6
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with One, Substituted -21 with 1 → KILLED
6. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_COMMENT_HYPHEN2; |
|
244
|
9
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCommentPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCommentPending : changed conditional boundary → KILLED
5. handleCommentPending : negated conditional → KILLED
6. handleCommentPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCommentPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // no more input? |
|
245
|
6
1. handleCommentPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return EVENT_INCOMPLETE; |
|
246
|
|
} |
|
247
|
|
// continue |
|
248
|
|
} |
|
249
|
12
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCommentPending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleCommentPending : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCommentPending : Bug fixed: CRCR replace with One, Substituted -21 with 1 → KILLED
8. handleCommentPending : negated conditional → KILLED
9. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleCommentPending : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleCommentPending : changed conditional boundary to IF_ICMPGE → KILLED
12. handleCommentPending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_COMMENT_HYPHEN2) { |
|
250
|
6
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
251
|
9
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCommentPending : Replaced operate with second operand → KILLED
9. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
252
|
11
1. handleCommentPending : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleCommentPending : negated conditional → KILLED
7. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCommentPending : changed conditional boundary to IF_ICMPGT → KILLED
10. handleCommentPending : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCommentPending : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_GT) { |
|
253
|
1
1. handleCommentPending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportDoubleHyphenInComments → NO_COVERAGE
|
reportDoubleHyphenInComments(); |
|
254
|
|
} |
|
255
|
6
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
256
|
6
1. handleCommentPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
257
|
6
1. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
5. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCommentPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return COMMENT; |
|
258
|
|
} |
|
259
|
|
// Otherwise can use default code |
|
260
|
17
1. handleCommentPending : changed conditional boundary to IFLE → SURVIVED
2. handleCommentPending : changed conditional boundary to IFLT → SURVIVED
3. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleCommentPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCommentPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleCommentPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
10. handleCommentPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
11. handleCommentPending : negated conditional → KILLED
12. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. handleCommentPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handleCommentPending : changed conditional boundary to IFGE → KILLED
15. handleCommentPending : changed conditional boundary to IFGT → KILLED
16. handleCommentPending : changed conditional boundary to IFNE → KILLED
17. handleCommentPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleAndAppendPending() ? 0 : EVENT_INCOMPLETE; |
|
261
|
|
} |
|
262
|
|
|
|
263
|
|
/* |
|
264
|
|
/********************************************************************** |
|
265
|
|
/* Parsing, PI |
|
266
|
|
/********************************************************************** |
|
267
|
|
*/ |
|
268
|
|
|
|
269
|
|
protected int parsePIData() throws XMLStreamException |
|
270
|
|
{ |
|
271
|
|
// Left-overs from last input block? |
|
272
|
7
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parsePIData : negated conditional → KILLED
3. parsePIData : changed conditional boundary to IFGE → KILLED
4. parsePIData : changed conditional boundary to IFGT → KILLED
5. parsePIData : changed conditional boundary to IFLE → KILLED
6. parsePIData : changed conditional boundary to IFLT → KILLED
7. parsePIData : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { // CR, multi-byte, '?' |
|
273
|
|
int result = handlePIPending(); |
|
274
|
|
// If there's not enough input, or if we completed, can leave |
|
275
|
6
1. parsePIData : changed conditional boundary to IFLE → SURVIVED
2. parsePIData : negated conditional → KILLED
3. parsePIData : changed conditional boundary to IFGE → KILLED
4. parsePIData : changed conditional boundary to IFGT → KILLED
5. parsePIData : changed conditional boundary to IFLT → KILLED
6. parsePIData : changed conditional boundary to IFNE → KILLED
|
if (result != 0) { |
|
276
|
1
1. parsePIData : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return result; |
|
277
|
|
} |
|
278
|
|
// otherwise we should be good to continue |
|
279
|
|
} |
|
280
|
|
|
|
281
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] outputBuffer = _textBuilder.getBufferWithoutReset(); |
|
282
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
int outPtr = _textBuilder.getCurrentLength(); |
|
283
|
|
|
|
284
|
2
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
|
final int[] TYPES = _charTypes.OTHER_CHARS; |
|
285
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
ByteBuffer inputBuffer = _inputBuffer; |
|
286
|
|
|
|
287
|
|
main_loop: |
|
288
|
|
while (true) { |
|
289
|
|
int c; |
|
290
|
|
// Then the tight ASCII non-funny-char loop: |
|
291
|
|
ascii_loop: |
|
292
|
|
while (true) { |
|
293
|
9
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePIData : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePIData : changed conditional boundary → TIMED_OUT
5. parsePIData : negated conditional → KILLED
6. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePIData : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
294
|
|
break main_loop; |
|
295
|
|
} |
|
296
|
7
1. parsePIData : changed conditional boundary → SURVIVED
2. parsePIData : changed conditional boundary to IF_ICMPNE → SURVIVED
3. parsePIData : negated conditional → KILLED
4. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
5. parsePIData : changed conditional boundary to IF_ICMPGE → KILLED
6. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
7. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outPtr >= outputBuffer.length) { |
|
297
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
298
|
5
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePIData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
299
|
|
} |
|
300
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
int max = _inputEnd; |
|
301
|
|
{ |
|
302
|
3
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : Replaced operate with second operand → KILLED
3. parsePIData : Replaced operate with second operand → KILLED
|
int max2 = _inputPtr + (outputBuffer.length - outPtr); |
|
303
|
7
1. parsePIData : changed conditional boundary → SURVIVED
2. parsePIData : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePIData : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePIData : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parsePIData : negated conditional → KILLED
6. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePIData : changed conditional boundary to IF_ICMPLT → KILLED
|
if (max2 < max) { |
|
304
|
|
max = max2; |
|
305
|
|
} |
|
306
|
|
} |
|
307
|
8
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. parsePIData : negated conditional → TIMED_OUT
4. parsePIData : changed conditional boundary to IF_ICMPLT → TIMED_OUT
5. parsePIData : changed conditional boundary to IF_ICMPNE → TIMED_OUT
6. parsePIData : changed conditional boundary → KILLED
7. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
8. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
|
while (_inputPtr < max) { |
|
308
|
14
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parsePIData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. parsePIData : Replaced operate with second operand → KILLED
11. parsePIData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
12. parsePIData : Replaced bitwise AND with OR → KILLED
13. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) inputBuffer.get(_inputPtr++) & 0xFF; |
|
309
|
6
1. parsePIData : changed conditional boundary to IFLE → SURVIVED
2. parsePIData : changed conditional boundary to IFLT → SURVIVED
3. parsePIData : negated conditional → KILLED
4. parsePIData : changed conditional boundary to IFGE → KILLED
5. parsePIData : changed conditional boundary to IFGT → KILLED
6. parsePIData : changed conditional boundary to IFNE → KILLED
|
if (TYPES[c] != 0) { |
|
310
|
|
break ascii_loop; |
|
311
|
|
} |
|
312
|
5
1. parsePIData : Changed increment from 1 to -1 → KILLED
2. parsePIData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parsePIData : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parsePIData : UOI Mutator: Removed unary increment of local variable → KILLED
5. parsePIData : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
313
|
|
} |
|
314
|
|
} |
|
315
|
|
|
|
316
|
|
switch (TYPES[c]) { |
|
317
|
|
case XmlCharTypes.CT_INVALID: |
|
318
|
|
c = handleInvalidXmlChar(c); |
|
319
|
|
case XmlCharTypes.CT_WS_CR: |
|
320
|
|
{ |
|
321
|
9
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePIData : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePIData : changed conditional boundary → KILLED
5. parsePIData : negated conditional → KILLED
6. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePIData : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
322
|
6
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePIData : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
323
|
|
break main_loop; |
|
324
|
|
} |
|
325
|
12
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePIData : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePIData : changed conditional boundary to IF_ICMPLT → SURVIVED
5. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parsePIData : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
9. parsePIData : negated conditional → KILLED
10. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
12. parsePIData : changed conditional boundary to IF_ICMPGE → KILLED
|
if (inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
326
|
8
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parsePIData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parsePIData : Replaced operate with second operand → KILLED
8. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
327
|
|
} |
|
328
|
1
1. parsePIData : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
329
|
|
} |
|
330
|
5
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePIData : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
5. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = INT_LF; |
|
331
|
|
break; |
|
332
|
|
case XmlCharTypes.CT_WS_LF: |
|
333
|
1
1. parsePIData : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
334
|
|
break; |
|
335
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
336
|
9
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePIData : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePIData : changed conditional boundary → KILLED
5. parsePIData : negated conditional → KILLED
6. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePIData : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
337
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
338
|
|
break main_loop; |
|
339
|
|
} |
|
340
|
|
c = decodeUtf8_2(c); |
|
341
|
|
break; |
|
342
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
343
|
15
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parsePIData : Replaced operate with second operand → KILLED
7. parsePIData : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. parsePIData : changed conditional boundary → KILLED
9. parsePIData : negated conditional → KILLED
10. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
12. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
13. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
14. parsePIData : changed conditional boundary to IF_ICMPLT → KILLED
15. parsePIData : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 2) { |
|
344
|
10
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePIData : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parsePIData : changed conditional boundary → KILLED
5. parsePIData : negated conditional → KILLED
6. parsePIData : changed conditional boundary to IF_ICMPGE → KILLED
7. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
8. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePIData : changed conditional boundary to IF_ICMPLT → KILLED
10. parsePIData : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
345
|
15
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parsePIData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parsePIData : Replaced operate with second operand → KILLED
12. parsePIData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parsePIData : Replaced bitwise AND with OR → KILLED
14. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
346
|
7
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePIData : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parsePIData : Replaced Shift Left with Shift Right → KILLED
6. parsePIData : Replaced bitwise OR with AND → KILLED
7. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
347
|
|
} |
|
348
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
349
|
|
break main_loop; |
|
350
|
|
} |
|
351
|
|
c = decodeUtf8_3(c); |
|
352
|
|
break; |
|
353
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
354
|
15
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePIData : Replaced operate with second operand → NO_COVERAGE
5. parsePIData : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
6. parsePIData : changed conditional boundary → NO_COVERAGE
7. parsePIData : negated conditional → NO_COVERAGE
8. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. parsePIData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. parsePIData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. parsePIData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. parsePIData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. parsePIData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 3) { |
|
355
|
10
1. parsePIData : changed conditional boundary → NO_COVERAGE
2. parsePIData : negated conditional → NO_COVERAGE
3. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. parsePIData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. parsePIData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. parsePIData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. parsePIData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. parsePIData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. parsePIData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
356
|
15
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parsePIData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. parsePIData : Replaced operate with second operand → NO_COVERAGE
9. parsePIData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. parsePIData : Replaced bitwise AND with OR → NO_COVERAGE
11. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
357
|
7
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePIData : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. parsePIData : Replaced Shift Left with Shift Right → NO_COVERAGE
6. parsePIData : Replaced bitwise OR with AND → NO_COVERAGE
7. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
358
|
10
1. parsePIData : changed conditional boundary → NO_COVERAGE
2. parsePIData : negated conditional → NO_COVERAGE
3. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. parsePIData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. parsePIData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. parsePIData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. parsePIData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. parsePIData : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. parsePIData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
359
|
15
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parsePIData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. parsePIData : Replaced operate with second operand → NO_COVERAGE
9. parsePIData : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. parsePIData : Replaced bitwise AND with OR → NO_COVERAGE
11. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
360
|
7
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePIData : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. parsePIData : Replaced Shift Left with Shift Right → NO_COVERAGE
6. parsePIData : Replaced bitwise OR with AND → NO_COVERAGE
7. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 16); |
|
361
|
|
} |
|
362
|
|
} |
|
363
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
364
|
|
break main_loop; |
|
365
|
|
} |
|
366
|
|
c = decodeUtf8_4(c); |
|
367
|
|
// Let's add first part right away: |
|
368
|
17
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parsePIData : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. parsePIData : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. parsePIData : Changed increment from 1 to -1 → NO_COVERAGE
10. parsePIData : Replaced Shift Right with Shift Left → NO_COVERAGE
11. parsePIData : Replaced bitwise OR with AND → NO_COVERAGE
12. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. parsePIData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. parsePIData : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. parsePIData : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. parsePIData : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
outputBuffer[outPtr++] = (char) (0xD800 | (c >> 10)); |
|
369
|
7
1. parsePIData : changed conditional boundary → NO_COVERAGE
2. parsePIData : negated conditional → NO_COVERAGE
3. parsePIData : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. parsePIData : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. parsePIData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. parsePIData : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. parsePIData : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (outPtr >= outputBuffer.length) { |
|
370
|
1
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
371
|
5
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parsePIData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
372
|
|
} |
|
373
|
12
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parsePIData : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. parsePIData : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. parsePIData : Replaced bitwise AND with OR → NO_COVERAGE
10. parsePIData : Replaced bitwise OR with AND → NO_COVERAGE
11. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
374
|
|
// And let the other char output down below |
|
375
|
|
break; |
|
376
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
377
|
1
1. parsePIData : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
378
|
|
case XmlCharTypes.CT_QMARK: |
|
379
|
|
|
|
380
|
9
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePIData : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePIData : changed conditional boundary → KILLED
5. parsePIData : negated conditional → KILLED
6. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePIData : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
381
|
6
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePIData : Bug fixed: CRCR replace with One, Substituted -15 with 1 → KILLED
6. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_PI_QMARK; |
|
382
|
|
break main_loop; |
|
383
|
|
} |
|
384
|
13
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parsePIData : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
7. parsePIData : negated conditional → KILLED
8. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. parsePIData : changed conditional boundary to IF_ICMPEQ → KILLED
10. parsePIData : changed conditional boundary to IF_ICMPGE → KILLED
11. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
12. parsePIData : changed conditional boundary to IF_ICMPGT → KILLED
13. parsePIData : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_GT) { // end |
|
385
|
8
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parsePIData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parsePIData : Replaced operate with second operand → KILLED
8. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
386
|
2
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parsePIData : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
387
|
6
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePIData : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
388
|
6
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePIData : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
389
|
6
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePIData : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
5. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parsePIData : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return PROCESSING_INSTRUCTION; |
|
390
|
|
} |
|
391
|
|
// Not end mark, just need to reprocess the second char |
|
392
|
|
break; |
|
393
|
|
// default: |
|
394
|
|
// Other types are not important here... |
|
395
|
|
} |
|
396
|
|
|
|
397
|
|
// Ok, can output the char (we know there's room for one more) |
|
398
|
5
1. parsePIData : Changed increment from 1 to -1 → KILLED
2. parsePIData : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parsePIData : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parsePIData : UOI Mutator: Removed unary increment of local variable → KILLED
5. parsePIData : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
399
|
|
} |
|
400
|
2
1. parsePIData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parsePIData : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
401
|
6
1. parsePIData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePIData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePIData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePIData : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. parsePIData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parsePIData : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
402
|
|
} |
|
403
|
|
|
|
404
|
|
/** |
|
405
|
|
* @return EVENT_INCOMPLETE, if there's not enough input to |
|
406
|
|
* handle pending char, PROCESSING_INSTRUCTION, if we handled complete |
|
407
|
|
* "?>" end marker, or 0 to indicate something else |
|
408
|
|
* was succesfully handled. |
|
409
|
|
*/ |
|
410
|
|
protected int handlePIPending() throws XMLStreamException |
|
411
|
|
{ |
|
412
|
|
// First, the special case, end marker: |
|
413
|
12
1. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handlePIPending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handlePIPending : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePIPending : Bug fixed: CRCR replace with One, Substituted -15 with 1 → KILLED
8. handlePIPending : negated conditional → KILLED
9. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handlePIPending : changed conditional boundary to IF_ICMPEQ → KILLED
11. handlePIPending : changed conditional boundary to IF_ICMPGE → KILLED
12. handlePIPending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_PI_QMARK) { |
|
414
|
9
1. handlePIPending : changed conditional boundary → SURVIVED
2. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePIPending : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePIPending : negated conditional → KILLED
6. handlePIPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePIPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePIPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePIPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
415
|
6
1. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePIPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePIPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
416
|
|
} |
|
417
|
2
1. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
byte b = _inputBuffer.get(_inputPtr); |
|
418
|
6
1. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
419
|
11
1. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePIPending : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
5. handlePIPending : negated conditional → KILLED
6. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handlePIPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePIPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePIPending : changed conditional boundary to IF_ICMPGT → KILLED
10. handlePIPending : changed conditional boundary to IF_ICMPLT → KILLED
11. handlePIPending : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_GT) { |
|
420
|
|
// can't be the end marker, just append '-' and go |
|
421
|
7
1. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIPending : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
6. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handlePIPending : removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
_textBuilder.append('?'); |
|
422
|
6
1. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePIPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePIPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
423
|
|
} |
|
424
|
8
1. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handlePIPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handlePIPending : Replaced operate with second operand → KILLED
8. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
425
|
6
1. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
426
|
6
1. handlePIPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePIPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
427
|
6
1. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePIPending : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
5. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePIPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return PROCESSING_INSTRUCTION; |
|
428
|
|
} |
|
429
|
|
// Otherwise can use default code |
|
430
|
17
1. handlePIPending : changed conditional boundary to IFLE → SURVIVED
2. handlePIPending : changed conditional boundary to IFLT → SURVIVED
3. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePIPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePIPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handlePIPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handlePIPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
10. handlePIPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
11. handlePIPending : negated conditional → KILLED
12. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. handlePIPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handlePIPending : changed conditional boundary to IFGE → KILLED
15. handlePIPending : changed conditional boundary to IFGT → KILLED
16. handlePIPending : changed conditional boundary to IFNE → KILLED
17. handlePIPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleAndAppendPending() ? 0 : EVENT_INCOMPLETE; |
|
431
|
|
} |
|
432
|
|
|
|
433
|
|
/* |
|
434
|
|
/********************************************************************** |
|
435
|
|
/* Parsing, internal DTD subset |
|
436
|
|
/********************************************************************** |
|
437
|
|
*/ |
|
438
|
|
|
|
439
|
|
protected final boolean handleDTDInternalSubset(boolean init) throws XMLStreamException |
|
440
|
|
{ |
|
441
|
|
char[] outputBuffer; |
|
442
|
|
int outPtr; |
|
443
|
|
|
|
444
|
6
1. handleDTDInternalSubset : changed conditional boundary to IFLE → SURVIVED
2. handleDTDInternalSubset : negated conditional → KILLED
3. handleDTDInternalSubset : changed conditional boundary to IFGE → KILLED
4. handleDTDInternalSubset : changed conditional boundary to IFGT → KILLED
5. handleDTDInternalSubset : changed conditional boundary to IFLT → KILLED
6. handleDTDInternalSubset : changed conditional boundary to IFNE → KILLED
|
if (init) { // first time around |
|
445
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
outputBuffer = _textBuilder.resetWithEmpty(); |
|
446
|
5
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
outPtr = 0; |
|
447
|
6
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemAttrQuote = 0; |
|
448
|
6
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_inDtdDeclaration = false; |
|
449
|
|
} else { |
|
450
|
7
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : changed conditional boundary to IFGE → SURVIVED
3. handleDTDInternalSubset : changed conditional boundary to IFLE → SURVIVED
4. handleDTDInternalSubset : negated conditional → KILLED
5. handleDTDInternalSubset : changed conditional boundary to IFGT → KILLED
6. handleDTDInternalSubset : changed conditional boundary to IFLT → KILLED
7. handleDTDInternalSubset : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { |
|
451
|
6
1. handleDTDInternalSubset : negated conditional → NO_COVERAGE
2. handleDTDInternalSubset : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleDTDInternalSubset : changed conditional boundary to IFGE → NO_COVERAGE
4. handleDTDInternalSubset : changed conditional boundary to IFGT → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IFLE → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handleAndAppendPending()) { |
|
452
|
6
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTDInternalSubset : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
453
|
|
} |
|
454
|
|
} |
|
455
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
outputBuffer = _textBuilder.getBufferWithoutReset(); |
|
456
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
outPtr = _textBuilder.getCurrentLength(); |
|
457
|
|
} |
|
458
|
|
|
|
459
|
2
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldDTD_CHARS mutated with null check on object → SURVIVED
|
final int[] TYPES = _charTypes.DTD_CHARS; |
|
460
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
ByteBuffer inputBuffer = _inputBuffer; |
|
461
|
|
|
|
462
|
|
main_loop: |
|
463
|
|
while (true) { |
|
464
|
|
int c; |
|
465
|
|
// Then the tight ASCII non-funny-char loop: |
|
466
|
|
ascii_loop: |
|
467
|
|
while (true) { |
|
468
|
9
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleDTDInternalSubset : changed conditional boundary → TIMED_OUT
5. handleDTDInternalSubset : negated conditional → TIMED_OUT
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → TIMED_OUT
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → TIMED_OUT
8. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → KILLED
9. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
469
|
|
break main_loop; |
|
470
|
|
} |
|
471
|
7
1. handleDTDInternalSubset : changed conditional boundary → SURVIVED
2. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → SURVIVED
3. handleDTDInternalSubset : negated conditional → KILLED
4. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → KILLED
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → KILLED
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → KILLED
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outPtr >= outputBuffer.length) { |
|
472
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
473
|
5
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
474
|
|
} |
|
475
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
int max = _inputEnd; |
|
476
|
|
{ |
|
477
|
3
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : Replaced operate with second operand → KILLED
3. handleDTDInternalSubset : Replaced operate with second operand → KILLED
|
int max2 = _inputPtr + (outputBuffer.length - outPtr); |
|
478
|
7
1. handleDTDInternalSubset : changed conditional boundary → SURVIVED
2. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleDTDInternalSubset : negated conditional → KILLED
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → KILLED
|
if (max2 < max) { |
|
479
|
|
max = max2; |
|
480
|
|
} |
|
481
|
|
} |
|
482
|
8
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleDTDInternalSubset : negated conditional → TIMED_OUT
4. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → TIMED_OUT
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → TIMED_OUT
6. handleDTDInternalSubset : changed conditional boundary → KILLED
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → KILLED
8. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → KILLED
|
while (_inputPtr < max) { |
|
483
|
14
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. handleDTDInternalSubset : Replaced operate with second operand → KILLED
11. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
12. handleDTDInternalSubset : Replaced bitwise AND with OR → KILLED
13. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) inputBuffer.get(_inputPtr++) & 0xFF; |
|
484
|
6
1. handleDTDInternalSubset : changed conditional boundary to IFLE → SURVIVED
2. handleDTDInternalSubset : changed conditional boundary to IFLT → SURVIVED
3. handleDTDInternalSubset : negated conditional → KILLED
4. handleDTDInternalSubset : changed conditional boundary to IFGE → KILLED
5. handleDTDInternalSubset : changed conditional boundary to IFGT → KILLED
6. handleDTDInternalSubset : changed conditional boundary to IFNE → KILLED
|
if (TYPES[c] != 0) { |
|
485
|
|
break ascii_loop; |
|
486
|
|
} |
|
487
|
5
1. handleDTDInternalSubset : Changed increment from 1 to -1 → KILLED
2. handleDTDInternalSubset : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. handleDTDInternalSubset : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. handleDTDInternalSubset : UOI Mutator: Removed unary increment of local variable → KILLED
5. handleDTDInternalSubset : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
488
|
|
} |
|
489
|
|
} |
|
490
|
|
|
|
491
|
|
switch (TYPES[c]) { |
|
492
|
|
case XmlCharTypes.CT_INVALID: |
|
493
|
|
c = handleInvalidXmlChar(c); |
|
494
|
|
case XmlCharTypes.CT_WS_CR: |
|
495
|
9
1. handleDTDInternalSubset : changed conditional boundary → NO_COVERAGE
2. handleDTDInternalSubset : negated conditional → NO_COVERAGE
3. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
496
|
6
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_CR; |
|
497
|
|
break main_loop; |
|
498
|
|
} |
|
499
|
12
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : negated conditional → NO_COVERAGE
6. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
500
|
8
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Replaced operate with second operand → NO_COVERAGE
6. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
501
|
|
} |
|
502
|
1
1. handleDTDInternalSubset : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
503
|
5
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = INT_LF; |
|
504
|
|
break; |
|
505
|
|
case XmlCharTypes.CT_WS_LF: |
|
506
|
1
1. handleDTDInternalSubset : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
507
|
|
break; |
|
508
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
509
|
9
1. handleDTDInternalSubset : changed conditional boundary → NO_COVERAGE
2. handleDTDInternalSubset : negated conditional → NO_COVERAGE
3. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
510
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
511
|
|
break main_loop; |
|
512
|
|
} |
|
513
|
|
c = decodeUtf8_2(c); |
|
514
|
|
break; |
|
515
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
516
|
15
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Replaced operate with second operand → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary → NO_COVERAGE
7. handleDTDInternalSubset : negated conditional → NO_COVERAGE
8. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 2) { |
|
517
|
10
1. handleDTDInternalSubset : changed conditional boundary → NO_COVERAGE
2. handleDTDInternalSubset : negated conditional → NO_COVERAGE
3. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
518
|
15
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleDTDInternalSubset : Replaced operate with second operand → NO_COVERAGE
9. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleDTDInternalSubset : Replaced bitwise AND with OR → NO_COVERAGE
11. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
519
|
7
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleDTDInternalSubset : Replaced bitwise OR with AND → NO_COVERAGE
7. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
520
|
|
} |
|
521
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
522
|
|
break main_loop; |
|
523
|
|
} |
|
524
|
|
c = decodeUtf8_3(c); |
|
525
|
|
break; |
|
526
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
527
|
15
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Replaced operate with second operand → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary → NO_COVERAGE
7. handleDTDInternalSubset : negated conditional → NO_COVERAGE
8. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 3) { |
|
528
|
10
1. handleDTDInternalSubset : changed conditional boundary → NO_COVERAGE
2. handleDTDInternalSubset : negated conditional → NO_COVERAGE
3. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
529
|
15
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleDTDInternalSubset : Replaced operate with second operand → NO_COVERAGE
9. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleDTDInternalSubset : Replaced bitwise AND with OR → NO_COVERAGE
11. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
530
|
7
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleDTDInternalSubset : Replaced bitwise OR with AND → NO_COVERAGE
7. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
531
|
10
1. handleDTDInternalSubset : changed conditional boundary → NO_COVERAGE
2. handleDTDInternalSubset : negated conditional → NO_COVERAGE
3. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
532
|
15
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleDTDInternalSubset : Replaced operate with second operand → NO_COVERAGE
9. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleDTDInternalSubset : Replaced bitwise AND with OR → NO_COVERAGE
11. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
533
|
7
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleDTDInternalSubset : Replaced bitwise OR with AND → NO_COVERAGE
7. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 16); |
|
534
|
|
} |
|
535
|
|
} |
|
536
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
537
|
|
break main_loop; |
|
538
|
|
} |
|
539
|
|
c = decodeUtf8_4(c); |
|
540
|
|
// Let's add first part right away: |
|
541
|
17
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. handleDTDInternalSubset : Changed increment from 1 to -1 → NO_COVERAGE
10. handleDTDInternalSubset : Replaced Shift Right with Shift Left → NO_COVERAGE
11. handleDTDInternalSubset : Replaced bitwise OR with AND → NO_COVERAGE
12. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleDTDInternalSubset : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. handleDTDInternalSubset : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. handleDTDInternalSubset : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. handleDTDInternalSubset : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
outputBuffer[outPtr++] = (char) (0xD800 | (c >> 10)); |
|
542
|
7
1. handleDTDInternalSubset : changed conditional boundary → NO_COVERAGE
2. handleDTDInternalSubset : negated conditional → NO_COVERAGE
3. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (outPtr >= outputBuffer.length) { |
|
543
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
544
|
5
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
545
|
|
} |
|
546
|
12
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. handleDTDInternalSubset : Replaced bitwise AND with OR → NO_COVERAGE
10. handleDTDInternalSubset : Replaced bitwise OR with AND → NO_COVERAGE
11. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
547
|
|
// And let the other char output down below |
|
548
|
|
break; |
|
549
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
550
|
1
1. handleDTDInternalSubset : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
551
|
|
|
|
552
|
|
case XmlCharTypes.CT_DTD_QUOTE: // apos or quot |
|
553
|
7
1. handleDTDInternalSubset : negated conditional → NO_COVERAGE
2. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
3. handleDTDInternalSubset : changed conditional boundary to IFEQ → NO_COVERAGE
4. handleDTDInternalSubset : changed conditional boundary to IFGE → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IFGT → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IFLE → NO_COVERAGE
7. handleDTDInternalSubset : changed conditional boundary to IFLT → NO_COVERAGE
|
if (_elemAttrQuote == 0) { |
|
554
|
1
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
|
_elemAttrQuote = (byte) c; |
|
555
|
|
} else { |
|
556
|
7
1. handleDTDInternalSubset : negated conditional → NO_COVERAGE
2. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
3. handleDTDInternalSubset : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. handleDTDInternalSubset : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleDTDInternalSubset : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_elemAttrQuote == c) { |
|
557
|
6
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
|
_elemAttrQuote = 0; |
|
558
|
|
} |
|
559
|
|
} |
|
560
|
|
break; |
|
561
|
|
|
|
562
|
|
case XmlCharTypes.CT_DTD_LT: |
|
563
|
7
1. handleDTDInternalSubset : negated conditional → SURVIVED
2. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED
3. handleDTDInternalSubset : changed conditional boundary to IFEQ → SURVIVED
4. handleDTDInternalSubset : changed conditional boundary to IFGE → SURVIVED
5. handleDTDInternalSubset : changed conditional boundary to IFGT → SURVIVED
6. handleDTDInternalSubset : changed conditional boundary to IFLE → SURVIVED
7. handleDTDInternalSubset : changed conditional boundary to IFLT → SURVIVED
|
if (!_inDtdDeclaration) { |
|
564
|
6
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_inDtdDeclaration = true; |
|
565
|
|
} |
|
566
|
|
break; |
|
567
|
|
case XmlCharTypes.CT_DTD_GT: |
|
568
|
7
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : changed conditional boundary to IFGT → SURVIVED
3. handleDTDInternalSubset : changed conditional boundary to IFLT → SURVIVED
4. handleDTDInternalSubset : negated conditional → KILLED
5. handleDTDInternalSubset : changed conditional boundary to IFEQ → KILLED
6. handleDTDInternalSubset : changed conditional boundary to IFGE → KILLED
7. handleDTDInternalSubset : changed conditional boundary to IFLE → KILLED
|
if (_elemAttrQuote == 0) { |
|
569
|
6
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_inDtdDeclaration = false; |
|
570
|
|
} |
|
571
|
|
break; |
|
572
|
|
case XmlCharTypes.CT_DTD_RBRACKET: |
|
573
|
14
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
3. handleDTDInternalSubset : changed conditional boundary to IFGT → SURVIVED
4. handleDTDInternalSubset : changed conditional boundary to IFGT → SURVIVED
5. handleDTDInternalSubset : changed conditional boundary to IFLT → SURVIVED
6. handleDTDInternalSubset : changed conditional boundary to IFLT → SURVIVED
7. handleDTDInternalSubset : negated conditional → KILLED
8. handleDTDInternalSubset : negated conditional → KILLED
9. handleDTDInternalSubset : changed conditional boundary to IFEQ → KILLED
10. handleDTDInternalSubset : changed conditional boundary to IFEQ → KILLED
11. handleDTDInternalSubset : changed conditional boundary to IFGE → KILLED
12. handleDTDInternalSubset : changed conditional boundary to IFGE → KILLED
13. handleDTDInternalSubset : changed conditional boundary to IFLE → KILLED
14. handleDTDInternalSubset : changed conditional boundary to IFLE → KILLED
|
if (!_inDtdDeclaration && _elemAttrQuote == 0) { |
|
574
|
2
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
575
|
6
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTDInternalSubset : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
576
|
|
} |
|
577
|
|
break; |
|
578
|
|
// default: |
|
579
|
|
// Other types are not important here... |
|
580
|
|
} |
|
581
|
|
// Ok, can output the char (we know there's room for one more) |
|
582
|
5
1. handleDTDInternalSubset : Changed increment from 1 to -1 → KILLED
2. handleDTDInternalSubset : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. handleDTDInternalSubset : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. handleDTDInternalSubset : UOI Mutator: Removed unary increment of local variable → KILLED
5. handleDTDInternalSubset : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
583
|
|
} |
|
584
|
2
1. handleDTDInternalSubset : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleDTDInternalSubset : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
585
|
6
1. handleDTDInternalSubset : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTDInternalSubset : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTDInternalSubset : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTDInternalSubset : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleDTDInternalSubset : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTDInternalSubset : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
586
|
|
} |
|
587
|
|
|
|
588
|
|
/* |
|
589
|
|
/********************************************************************** |
|
590
|
|
/* Parsing, CDATA |
|
591
|
|
/********************************************************************** |
|
592
|
|
*/ |
|
593
|
|
|
|
594
|
|
protected final int parseCDataContents() throws XMLStreamException |
|
595
|
|
{ |
|
596
|
|
// Left-overs from last input block? |
|
597
|
7
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parseCDataContents : negated conditional → KILLED
3. parseCDataContents : changed conditional boundary to IFGE → KILLED
4. parseCDataContents : changed conditional boundary to IFGT → KILLED
5. parseCDataContents : changed conditional boundary to IFLE → KILLED
6. parseCDataContents : changed conditional boundary to IFLT → KILLED
7. parseCDataContents : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { // CR, multi-byte, or ']'? |
|
598
|
|
int result = handleCDataPending(); |
|
599
|
|
// If there's not enough input, or if we completed, can leave |
|
600
|
6
1. parseCDataContents : changed conditional boundary to IFLE → SURVIVED
2. parseCDataContents : negated conditional → KILLED
3. parseCDataContents : changed conditional boundary to IFGE → KILLED
4. parseCDataContents : changed conditional boundary to IFGT → KILLED
5. parseCDataContents : changed conditional boundary to IFLT → KILLED
6. parseCDataContents : changed conditional boundary to IFNE → KILLED
|
if (result != 0) { |
|
601
|
1
1. parseCDataContents : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return result; |
|
602
|
|
} |
|
603
|
|
// otherwise we should be good to continue |
|
604
|
|
} |
|
605
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] outputBuffer = _textBuilder.getBufferWithoutReset(); |
|
606
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
int outPtr = _textBuilder.getCurrentLength(); |
|
607
|
|
|
|
608
|
2
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
|
final int[] TYPES = _charTypes.OTHER_CHARS; |
|
609
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
ByteBuffer inputBuffer = _inputBuffer; |
|
610
|
|
|
|
611
|
|
main_loop: |
|
612
|
|
while (true) { |
|
613
|
|
int c; |
|
614
|
|
// Then the tight ASCII non-funny-char loop: |
|
615
|
|
ascii_loop: |
|
616
|
|
while (true) { |
|
617
|
9
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCDataContents : changed conditional boundary → TIMED_OUT
5. parseCDataContents : negated conditional → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
618
|
|
break main_loop; |
|
619
|
|
} |
|
620
|
7
1. parseCDataContents : changed conditional boundary → SURVIVED
2. parseCDataContents : changed conditional boundary to IF_ICMPNE → SURVIVED
3. parseCDataContents : negated conditional → KILLED
4. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
5. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outPtr >= outputBuffer.length) { |
|
621
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
622
|
5
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
623
|
|
} |
|
624
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
int max = _inputEnd; |
|
625
|
|
{ |
|
626
|
3
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : Replaced operate with second operand → KILLED
3. parseCDataContents : Replaced operate with second operand → KILLED
|
int max2 = _inputPtr + (outputBuffer.length - outPtr); |
|
627
|
7
1. parseCDataContents : changed conditional boundary → SURVIVED
2. parseCDataContents : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseCDataContents : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parseCDataContents : negated conditional → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPLT → KILLED
|
if (max2 < max) { |
|
628
|
|
max = max2; |
|
629
|
|
} |
|
630
|
|
} |
|
631
|
8
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. parseCDataContents : negated conditional → TIMED_OUT
4. parseCDataContents : changed conditional boundary to IF_ICMPLT → TIMED_OUT
5. parseCDataContents : changed conditional boundary to IF_ICMPNE → TIMED_OUT
6. parseCDataContents : changed conditional boundary → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
while (_inputPtr < max) { |
|
632
|
14
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. parseCDataContents : Replaced operate with second operand → KILLED
11. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
12. parseCDataContents : Replaced bitwise AND with OR → KILLED
13. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) inputBuffer.get(_inputPtr++) & 0xFF; |
|
633
|
6
1. parseCDataContents : changed conditional boundary to IFLE → SURVIVED
2. parseCDataContents : changed conditional boundary to IFLT → SURVIVED
3. parseCDataContents : negated conditional → KILLED
4. parseCDataContents : changed conditional boundary to IFGE → KILLED
5. parseCDataContents : changed conditional boundary to IFGT → KILLED
6. parseCDataContents : changed conditional boundary to IFNE → KILLED
|
if (TYPES[c] != 0) { |
|
634
|
|
break ascii_loop; |
|
635
|
|
} |
|
636
|
5
1. parseCDataContents : Changed increment from 1 to -1 → KILLED
2. parseCDataContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parseCDataContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parseCDataContents : UOI Mutator: Removed unary increment of local variable → KILLED
5. parseCDataContents : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
637
|
|
} |
|
638
|
|
} |
|
639
|
|
|
|
640
|
|
switch (TYPES[c]) { |
|
641
|
|
case XmlCharTypes.CT_INVALID: |
|
642
|
|
c = handleInvalidXmlChar(c); |
|
643
|
|
case XmlCharTypes.CT_WS_CR: |
|
644
|
|
{ |
|
645
|
9
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCDataContents : changed conditional boundary → KILLED
5. parseCDataContents : negated conditional → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
646
|
6
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
647
|
|
break main_loop; |
|
648
|
|
} |
|
649
|
12
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
8. parseCDataContents : negated conditional → KILLED
9. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
11. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
12. parseCDataContents : changed conditional boundary to IF_ICMPLT → KILLED
|
if (inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
650
|
8
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parseCDataContents : Replaced operate with second operand → KILLED
8. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
651
|
|
} |
|
652
|
1
1. parseCDataContents : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
653
|
|
} |
|
654
|
5
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
5. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = INT_LF; |
|
655
|
|
break; |
|
656
|
|
case XmlCharTypes.CT_WS_LF: |
|
657
|
1
1. parseCDataContents : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
658
|
|
break; |
|
659
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
660
|
9
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCDataContents : changed conditional boundary → KILLED
5. parseCDataContents : negated conditional → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
661
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
662
|
|
break main_loop; |
|
663
|
|
} |
|
664
|
|
c = decodeUtf8_2(c); |
|
665
|
|
break; |
|
666
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
667
|
15
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseCDataContents : Replaced operate with second operand → KILLED
7. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. parseCDataContents : changed conditional boundary → KILLED
9. parseCDataContents : negated conditional → KILLED
10. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
12. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
13. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
14. parseCDataContents : changed conditional boundary to IF_ICMPLT → KILLED
15. parseCDataContents : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 2) { |
|
668
|
10
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parseCDataContents : changed conditional boundary → KILLED
5. parseCDataContents : negated conditional → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCDataContents : changed conditional boundary to IF_ICMPLT → KILLED
10. parseCDataContents : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
669
|
15
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parseCDataContents : Replaced operate with second operand → KILLED
12. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parseCDataContents : Replaced bitwise AND with OR → KILLED
14. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
670
|
7
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parseCDataContents : Replaced Shift Left with Shift Right → KILLED
6. parseCDataContents : Replaced bitwise OR with AND → KILLED
7. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
671
|
|
} |
|
672
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
673
|
|
break main_loop; |
|
674
|
|
} |
|
675
|
|
c = decodeUtf8_3(c); |
|
676
|
|
break; |
|
677
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
678
|
15
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Replaced operate with second operand → NO_COVERAGE
5. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
6. parseCDataContents : changed conditional boundary → NO_COVERAGE
7. parseCDataContents : negated conditional → NO_COVERAGE
8. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. parseCDataContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. parseCDataContents : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. parseCDataContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 3) { |
|
679
|
10
1. parseCDataContents : changed conditional boundary → NO_COVERAGE
2. parseCDataContents : negated conditional → NO_COVERAGE
3. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. parseCDataContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. parseCDataContents : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. parseCDataContents : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. parseCDataContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
680
|
15
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. parseCDataContents : Replaced operate with second operand → NO_COVERAGE
9. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. parseCDataContents : Replaced bitwise AND with OR → NO_COVERAGE
11. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
681
|
7
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. parseCDataContents : Replaced Shift Left with Shift Right → NO_COVERAGE
6. parseCDataContents : Replaced bitwise OR with AND → NO_COVERAGE
7. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
682
|
10
1. parseCDataContents : changed conditional boundary → NO_COVERAGE
2. parseCDataContents : negated conditional → NO_COVERAGE
3. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. parseCDataContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. parseCDataContents : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. parseCDataContents : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. parseCDataContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
683
|
15
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. parseCDataContents : Replaced operate with second operand → NO_COVERAGE
9. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. parseCDataContents : Replaced bitwise AND with OR → NO_COVERAGE
11. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
684
|
7
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. parseCDataContents : Replaced Shift Left with Shift Right → NO_COVERAGE
6. parseCDataContents : Replaced bitwise OR with AND → NO_COVERAGE
7. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 16); |
|
685
|
|
} |
|
686
|
|
} |
|
687
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
688
|
|
break main_loop; |
|
689
|
|
} |
|
690
|
|
c = decodeUtf8_4(c); |
|
691
|
|
// Let's add first part right away: |
|
692
|
17
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. parseCDataContents : Changed increment from 1 to -1 → NO_COVERAGE
10. parseCDataContents : Replaced Shift Right with Shift Left → NO_COVERAGE
11. parseCDataContents : Replaced bitwise OR with AND → NO_COVERAGE
12. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. parseCDataContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. parseCDataContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. parseCDataContents : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. parseCDataContents : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
outputBuffer[outPtr++] = (char) (0xD800 | (c >> 10)); |
|
693
|
7
1. parseCDataContents : changed conditional boundary → NO_COVERAGE
2. parseCDataContents : negated conditional → NO_COVERAGE
3. parseCDataContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. parseCDataContents : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. parseCDataContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (outPtr >= outputBuffer.length) { |
|
694
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
695
|
5
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
696
|
|
} |
|
697
|
12
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. parseCDataContents : Replaced bitwise AND with OR → NO_COVERAGE
10. parseCDataContents : Replaced bitwise OR with AND → NO_COVERAGE
11. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
698
|
|
// And let the other char output down below |
|
699
|
|
break; |
|
700
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
701
|
1
1. parseCDataContents : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
702
|
|
case XmlCharTypes.CT_RBRACKET: // ']]>'? |
|
703
|
9
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCDataContents : changed conditional boundary → KILLED
5. parseCDataContents : negated conditional → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
704
|
6
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with One, Substituted -30 with 1 → KILLED
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CDATA_BRACKET1; |
|
705
|
|
break main_loop; |
|
706
|
|
} |
|
707
|
|
// Hmmh. This is more complex... so be it. |
|
708
|
13
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPLT → SURVIVED
4. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
8. parseCDataContents : negated conditional → KILLED
9. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
11. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
12. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
13. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_RBRACKET) { // end might be nigh... |
|
709
|
8
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parseCDataContents : Replaced operate with second operand → KILLED
8. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
710
|
|
while (true) { |
|
711
|
9
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseCDataContents : changed conditional boundary → KILLED
5. parseCDataContents : negated conditional → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
8. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
9. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
712
|
6
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with One, Substituted -31 with 1 → KILLED
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CDATA_BRACKET2; |
|
713
|
|
break main_loop; |
|
714
|
|
} |
|
715
|
13
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPLT → SURVIVED
4. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
8. parseCDataContents : negated conditional → KILLED
9. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
11. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
12. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
13. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_GT) { |
|
716
|
8
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parseCDataContents : Replaced operate with second operand → KILLED
8. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
717
|
2
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parseCDataContents : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
718
|
6
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
719
|
6
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
720
|
6
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
5. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseCDataContents : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return CDATA; |
|
721
|
|
} |
|
722
|
13
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseCDataContents : changed conditional boundary to IF_ICMPGE → SURVIVED
4. parseCDataContents : changed conditional boundary to IF_ICMPGT → SURVIVED
5. parseCDataContents : changed conditional boundary to IF_ICMPGT → SURVIVED
6. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
10. parseCDataContents : negated conditional → KILLED
11. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. parseCDataContents : changed conditional boundary to IF_ICMPLT → KILLED
13. parseCDataContents : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputBuffer.get(_inputPtr) != BYTE_RBRACKET) { // neither '>' nor ']'; push "]]" back |
|
723
|
10
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
5. parseCDataContents : Changed increment from 1 to -1 → KILLED
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. parseCDataContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
8. parseCDataContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
9. parseCDataContents : UOI Mutator: Removed unary increment of local variable → KILLED
10. parseCDataContents : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = ']'; |
|
724
|
7
1. parseCDataContents : changed conditional boundary → SURVIVED
2. parseCDataContents : changed conditional boundary to IF_ICMPNE → SURVIVED
3. parseCDataContents : negated conditional → KILLED
4. parseCDataContents : changed conditional boundary to IF_ICMPEQ → KILLED
5. parseCDataContents : changed conditional boundary to IF_ICMPGE → KILLED
6. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
7. parseCDataContents : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outPtr >= outputBuffer.length) { |
|
725
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
726
|
5
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
727
|
|
} |
|
728
|
10
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
5. parseCDataContents : Changed increment from 1 to -1 → KILLED
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. parseCDataContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
8. parseCDataContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
9. parseCDataContents : UOI Mutator: Removed unary increment of local variable → KILLED
10. parseCDataContents : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = ']'; |
|
729
|
|
continue main_loop; |
|
730
|
|
} |
|
731
|
|
// Got third bracket; push one back, keep on checking |
|
732
|
8
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parseCDataContents : Replaced operate with second operand → NO_COVERAGE
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
733
|
10
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. parseCDataContents : Changed increment from 1 to -1 → NO_COVERAGE
6. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parseCDataContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
8. parseCDataContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
9. parseCDataContents : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
10. parseCDataContents : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
outputBuffer[outPtr++] = ']'; |
|
734
|
7
1. parseCDataContents : changed conditional boundary → NO_COVERAGE
2. parseCDataContents : negated conditional → NO_COVERAGE
3. parseCDataContents : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. parseCDataContents : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. parseCDataContents : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. parseCDataContents : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (outPtr >= outputBuffer.length) { |
|
735
|
1
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
736
|
5
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
737
|
|
} |
|
738
|
|
} |
|
739
|
|
} |
|
740
|
|
break; |
|
741
|
|
// default: |
|
742
|
|
// Other types are not important here... |
|
743
|
|
} |
|
744
|
|
|
|
745
|
|
// Ok, can output the char (we know there's room for one more) |
|
746
|
5
1. parseCDataContents : Changed increment from 1 to -1 → KILLED
2. parseCDataContents : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parseCDataContents : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parseCDataContents : UOI Mutator: Removed unary increment of local variable → KILLED
5. parseCDataContents : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
747
|
|
} |
|
748
|
|
|
|
749
|
2
1. parseCDataContents : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parseCDataContents : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
750
|
6
1. parseCDataContents : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseCDataContents : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseCDataContents : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseCDataContents : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. parseCDataContents : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseCDataContents : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
751
|
|
} |
|
752
|
|
|
|
753
|
|
/** |
|
754
|
|
* @return EVENT_INCOMPLETE, if there's not enough input to |
|
755
|
|
* handle pending char, CDATA, if we handled complete |
|
756
|
|
* "]]>" end marker, or 0 to indicate something else |
|
757
|
|
* was succesfully handled. |
|
758
|
|
*/ |
|
759
|
|
protected final int handleCDataPending() throws XMLStreamException |
|
760
|
|
{ |
|
761
|
12
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted -30 with 1 → KILLED
6. handleCDataPending : negated conditional → KILLED
7. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCDataPending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleCDataPending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleCDataPending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_CDATA_BRACKET1) { |
|
762
|
9
1. handleCDataPending : changed conditional boundary → SURVIVED
2. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleCDataPending : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleCDataPending : negated conditional → KILLED
6. handleCDataPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
763
|
6
1. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleCDataPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
764
|
|
} |
|
765
|
13
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataPending : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
8. handleCDataPending : negated conditional → KILLED
9. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleCDataPending : changed conditional boundary to IF_ICMPLT → KILLED
13. handleCDataPending : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputBuffer.get(_inputPtr) != BYTE_RBRACKET) { |
|
766
|
|
// can't be the end marker, just append ']' and go |
|
767
|
7
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
6. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleCDataPending : removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
_textBuilder.append(']'); |
|
768
|
7
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleCDataPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_pendingInput = 0); |
|
769
|
|
} |
|
770
|
8
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleCDataPending : Replaced operate with second operand → KILLED
8. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
771
|
6
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted -31 with 1 → KILLED
6. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CDATA_BRACKET2; |
|
772
|
9
1. handleCDataPending : changed conditional boundary → SURVIVED
2. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleCDataPending : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleCDataPending : negated conditional → KILLED
6. handleCDataPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // no more input? |
|
773
|
6
1. handleCDataPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return EVENT_INCOMPLETE; |
|
774
|
|
} |
|
775
|
|
// continue |
|
776
|
|
} |
|
777
|
12
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCDataPending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleCDataPending : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataPending : Bug fixed: CRCR replace with One, Substituted -31 with 1 → KILLED
8. handleCDataPending : negated conditional → KILLED
9. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleCDataPending : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleCDataPending : changed conditional boundary to IF_ICMPGE → KILLED
12. handleCDataPending : changed conditional boundary to IF_ICMPLT → KILLED
|
while (_pendingInput == PENDING_STATE_CDATA_BRACKET2) { |
|
778
|
9
1. handleCDataPending : changed conditional boundary → SURVIVED
2. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleCDataPending : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleCDataPending : negated conditional → KILLED
6. handleCDataPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
779
|
6
1. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleCDataPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
780
|
|
} |
|
781
|
9
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCDataPending : Replaced operate with second operand → KILLED
9. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
782
|
11
1. handleCDataPending : changed conditional boundary to IF_ICMPLT → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleCDataPending : negated conditional → KILLED
7. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCDataPending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleCDataPending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleCDataPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (b == BYTE_GT) { |
|
783
|
6
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
784
|
6
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
785
|
6
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
786
|
6
1. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
5. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCDataPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return CDATA; |
|
787
|
|
} |
|
788
|
11
1. handleCDataPending : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCDataPending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleCDataPending : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
8. handleCDataPending : negated conditional → KILLED
9. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleCDataPending : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCDataPending : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_RBRACKET) { |
|
789
|
8
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleCDataPending : Replaced operate with second operand → KILLED
8. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
--_inputPtr; |
|
790
|
2
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleCDataPending : removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
_textBuilder.append("]]"); |
|
791
|
7
1. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleCDataPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_pendingInput = 0); |
|
792
|
|
} |
|
793
|
7
1. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleCDataPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
7. handleCDataPending : removed call to com/fasterxml/aalto/util/TextBuilder::append → NO_COVERAGE
|
_textBuilder.append(']'); |
|
794
|
|
} |
|
795
|
|
// Otherwise can use default code |
|
796
|
17
1. handleCDataPending : changed conditional boundary to IFLE → SURVIVED
2. handleCDataPending : changed conditional boundary to IFLT → SURVIVED
3. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleCDataPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleCDataPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
10. handleCDataPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
11. handleCDataPending : negated conditional → KILLED
12. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. handleCDataPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handleCDataPending : changed conditional boundary to IFGE → KILLED
15. handleCDataPending : changed conditional boundary to IFGT → KILLED
16. handleCDataPending : changed conditional boundary to IFNE → KILLED
17. handleCDataPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleAndAppendPending() ? 0 : EVENT_INCOMPLETE; |
|
797
|
|
} |
|
798
|
|
|
|
799
|
|
/** |
|
800
|
|
* This method gets called, if the first character of a |
|
801
|
|
* CHARACTERS event could not be fully read (multi-byte, |
|
802
|
|
* split over buffer boundary). If so, there is some |
|
803
|
|
* pending data to be handled. |
|
804
|
|
*/ |
|
805
|
|
protected int startCharactersPending() throws XMLStreamException |
|
806
|
|
{ |
|
807
|
|
// First, need to have at least one more byte: |
|
808
|
9
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startCharactersPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startCharactersPending : changed conditional boundary → KILLED
5. startCharactersPending : negated conditional → KILLED
6. startCharactersPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. startCharactersPending : changed conditional boundary to IF_ICMPGE → KILLED
8. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
809
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharactersPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
810
|
|
} |
|
811
|
|
|
|
812
|
|
// K. So what was the type again? |
|
813
|
1
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
int c = _pendingInput; |
|
814
|
6
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
815
|
|
|
|
816
|
|
// Possible \r\n linefeed? |
|
817
|
11
1. startCharactersPending : changed conditional boundary to IF_ICMPGT → SURVIVED
2. startCharactersPending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startCharactersPending : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
7. startCharactersPending : negated conditional → KILLED
8. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. startCharactersPending : changed conditional boundary to IF_ICMPEQ → KILLED
10. startCharactersPending : changed conditional boundary to IF_ICMPGE → KILLED
11. startCharactersPending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (c == PENDING_STATE_CR) { |
|
818
|
13
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharactersPending : changed conditional boundary to IF_ICMPGT → SURVIVED
4. startCharactersPending : changed conditional boundary to IF_ICMPGT → SURVIVED
5. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
9. startCharactersPending : negated conditional → KILLED
10. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. startCharactersPending : changed conditional boundary to IF_ICMPEQ → KILLED
12. startCharactersPending : changed conditional boundary to IF_ICMPGE → KILLED
13. startCharactersPending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
819
|
8
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. startCharactersPending : Replaced operate with second operand → KILLED
8. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
820
|
|
} |
|
821
|
1
1. startCharactersPending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
822
|
7
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. startCharactersPending : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
_textBuilder.resetWithChar(CHAR_LF); |
|
823
|
|
} else { |
|
824
|
|
// Nah, a multi-byte UTF-8 char: |
|
825
|
|
|
|
826
|
|
// Let's just retest the first pending byte (in LSB): |
|
827
|
8
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
3. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. startCharactersPending : Replaced bitwise AND with OR → KILLED
8. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
switch (_charTypes.TEXT_CHARS[c & 0xFF]) { |
|
828
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
829
|
|
// Easy: must have just one byte, did get another one: |
|
830
|
2
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. startCharactersPending : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
_textBuilder.resetWithChar((char) decodeUtf8_2(c)); |
|
831
|
|
break; |
|
832
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
833
|
|
{ |
|
834
|
|
// Ok... so do we have one or two pending bytes? |
|
835
|
15
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharactersPending : Replaced operate with second operand → KILLED
12. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharactersPending : Replaced bitwise AND with OR → KILLED
14. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int next = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
836
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. startCharactersPending : Replaced Shift Right with Shift Left → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c2 = (c >> 8); |
|
837
|
6
1. startCharactersPending : changed conditional boundary to IFGT → SURVIVED
2. startCharactersPending : negated conditional → KILLED
3. startCharactersPending : changed conditional boundary to IFEQ → KILLED
4. startCharactersPending : changed conditional boundary to IFGE → KILLED
5. startCharactersPending : changed conditional boundary to IFLE → KILLED
6. startCharactersPending : changed conditional boundary to IFLT → KILLED
|
if (c2 == 0) { // just one; need two more |
|
838
|
9
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startCharactersPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startCharactersPending : changed conditional boundary → KILLED
5. startCharactersPending : negated conditional → KILLED
6. startCharactersPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. startCharactersPending : changed conditional boundary to IF_ICMPGE → KILLED
8. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // but got only one |
|
839
|
8
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. startCharactersPending : Replaced Shift Left with Shift Right → KILLED
7. startCharactersPending : Replaced bitwise OR with AND → KILLED
8. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 8); |
|
840
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharactersPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
841
|
|
} |
|
842
|
15
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharactersPending : Replaced operate with second operand → KILLED
12. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharactersPending : Replaced bitwise AND with OR → KILLED
14. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
843
|
|
c = decodeUtf8_3(c, next, c3); |
|
844
|
|
} else { // had two, got one, bueno: |
|
845
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. startCharactersPending : Replaced bitwise AND with OR → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = decodeUtf8_3((c & 0xFF), c2, next); |
|
846
|
|
} |
|
847
|
2
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. startCharactersPending : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
_textBuilder.resetWithChar((char) c); |
|
848
|
|
} |
|
849
|
|
break; |
|
850
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
851
|
|
{ |
|
852
|
15
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharactersPending : Replaced operate with second operand → KILLED
12. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharactersPending : Replaced bitwise AND with OR → KILLED
14. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int next = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
853
|
|
// Only had one? |
|
854
|
12
1. startCharactersPending : changed conditional boundary to IFGT → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. startCharactersPending : Replaced Shift Right with Shift Left → KILLED
7. startCharactersPending : negated conditional → KILLED
8. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. startCharactersPending : changed conditional boundary to IFEQ → KILLED
10. startCharactersPending : changed conditional boundary to IFGE → KILLED
11. startCharactersPending : changed conditional boundary to IFLE → KILLED
12. startCharactersPending : changed conditional boundary to IFLT → KILLED
|
if ((c >> 8) == 0) { // ok, so need 3 more |
|
855
|
9
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startCharactersPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startCharactersPending : changed conditional boundary → KILLED
5. startCharactersPending : negated conditional → KILLED
6. startCharactersPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. startCharactersPending : changed conditional boundary to IF_ICMPGE → KILLED
8. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // just have 1 |
|
856
|
8
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. startCharactersPending : Replaced Shift Left with Shift Right → KILLED
7. startCharactersPending : Replaced bitwise OR with AND → KILLED
8. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 8); |
|
857
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharactersPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
858
|
|
} |
|
859
|
15
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharactersPending : Replaced operate with second operand → KILLED
12. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharactersPending : Replaced bitwise AND with OR → KILLED
14. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c2 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
860
|
9
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startCharactersPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startCharactersPending : changed conditional boundary → KILLED
5. startCharactersPending : negated conditional → KILLED
6. startCharactersPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. startCharactersPending : changed conditional boundary to IF_ICMPGE → KILLED
8. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // almost, got 2 |
|
861
|
15
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
9. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
10. startCharactersPending : Replaced Shift Left with Shift Right → KILLED
11. startCharactersPending : Replaced bitwise OR with AND → KILLED
12. startCharactersPending : Replaced Shift Left with Shift Right → KILLED
13. startCharactersPending : Replaced bitwise OR with AND → KILLED
14. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 8) | (c2 << 16); |
|
862
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharactersPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
863
|
|
} |
|
864
|
15
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharactersPending : Replaced operate with second operand → KILLED
12. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharactersPending : Replaced bitwise AND with OR → KILLED
14. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
865
|
|
c = decodeUtf8_4(c, next, c2, c3); |
|
866
|
|
} else { // had two or three |
|
867
|
12
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
9. startCharactersPending : Replaced Shift Right with Shift Left → KILLED
10. startCharactersPending : Replaced bitwise AND with OR → KILLED
11. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c2 = (c >> 8) & 0xFF; |
|
868
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
5. startCharactersPending : Replaced Shift Right with Shift Left → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c3 = (c >> 16); |
|
869
|
|
|
|
870
|
6
1. startCharactersPending : changed conditional boundary to IFGT → SURVIVED
2. startCharactersPending : negated conditional → KILLED
3. startCharactersPending : changed conditional boundary to IFEQ → KILLED
4. startCharactersPending : changed conditional boundary to IFGE → KILLED
5. startCharactersPending : changed conditional boundary to IFLE → KILLED
6. startCharactersPending : changed conditional boundary to IFLT → KILLED
|
if (c3 == 0) { // just two |
|
871
|
9
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startCharactersPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startCharactersPending : changed conditional boundary → KILLED
5. startCharactersPending : negated conditional → KILLED
6. startCharactersPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. startCharactersPending : changed conditional boundary to IF_ICMPGE → KILLED
8. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharactersPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // one short |
|
872
|
8
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
6. startCharactersPending : Replaced Shift Left with Shift Right → KILLED
7. startCharactersPending : Replaced bitwise OR with AND → KILLED
8. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 16); |
|
873
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharactersPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
874
|
|
} |
|
875
|
15
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharactersPending : Replaced operate with second operand → KILLED
12. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharactersPending : Replaced bitwise AND with OR → KILLED
14. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
876
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. startCharactersPending : Replaced bitwise AND with OR → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = decodeUtf8_4((c & 0xFF), c2, next, c3); |
|
877
|
|
} else { // had three, got last |
|
878
|
6
1. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. startCharactersPending : Replaced bitwise AND with OR → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = decodeUtf8_4((c & 0xFF), c2, c3, next); |
|
879
|
|
} |
|
880
|
|
} |
|
881
|
|
} |
|
882
|
|
// Need a surrogate pair, have to call from here: |
|
883
|
2
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. startCharactersPending : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithSurrogate → KILLED
|
_textBuilder.resetWithSurrogate(c); |
|
884
|
7
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. startCharactersPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_currToken = CHARACTERS); |
|
885
|
|
default: // should never occur: |
|
886
|
|
throwInternal(); |
|
887
|
|
} |
|
888
|
|
} |
|
889
|
|
|
|
890
|
|
// Great, we got it. Is that enough? |
|
891
|
14
1. startCharactersPending : negated conditional → SURVIVED
2. startCharactersPending : negated conditional → SURVIVED
3. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgCoalescing mutated with null check on object → SURVIVED
4. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
5. startCharactersPending : changed conditional boundary to IFEQ → SURVIVED
6. startCharactersPending : changed conditional boundary to IFGE → SURVIVED
7. startCharactersPending : changed conditional boundary to IFGE → SURVIVED
8. startCharactersPending : changed conditional boundary to IFGT → SURVIVED
9. startCharactersPending : changed conditional boundary to IFGT → SURVIVED
10. startCharactersPending : changed conditional boundary to IFLE → SURVIVED
11. startCharactersPending : changed conditional boundary to IFLE → SURVIVED
12. startCharactersPending : changed conditional boundary to IFLT → SURVIVED
13. startCharactersPending : changed conditional boundary to IFLT → SURVIVED
14. startCharactersPending : changed conditional boundary to IFNE → SURVIVED
|
if (_cfgCoalescing && !_cfgLazyParsing) { |
|
892
|
|
// In eager coalescing mode, must read it all |
|
893
|
1
1. startCharactersPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return finishCharactersCoalescing(); |
|
894
|
|
} |
|
895
|
6
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = CHARACTERS; |
|
896
|
7
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
2. startCharactersPending : changed conditional boundary to IFLE → SURVIVED
3. startCharactersPending : changed conditional boundary to IFLT → SURVIVED
4. startCharactersPending : negated conditional → KILLED
5. startCharactersPending : changed conditional boundary to IFGE → KILLED
6. startCharactersPending : changed conditional boundary to IFGT → KILLED
7. startCharactersPending : changed conditional boundary to IFNE → KILLED
|
if (_cfgLazyParsing) { |
|
897
|
6
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. startCharactersPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharactersPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharactersPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharactersPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. startCharactersPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_tokenIncomplete = true; |
|
898
|
|
} else { |
|
899
|
1
1. startCharactersPending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
finishCharacters(); |
|
900
|
|
} |
|
901
|
2
1. startCharactersPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. startCharactersPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
902
|
|
} |
|
903
|
|
|
|
904
|
|
/** |
|
905
|
|
* TODO: Method not yet implemented |
|
906
|
|
*/ |
|
907
|
|
protected final int finishCharactersCoalescing() throws XMLStreamException |
|
908
|
|
{ |
|
909
|
|
// First things first: any pending partial multi-bytes? |
|
910
|
7
1. finishCharactersCoalescing : negated conditional → NO_COVERAGE
2. finishCharactersCoalescing : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
3. finishCharactersCoalescing : changed conditional boundary to IFGE → NO_COVERAGE
4. finishCharactersCoalescing : changed conditional boundary to IFGT → NO_COVERAGE
5. finishCharactersCoalescing : changed conditional boundary to IFLE → NO_COVERAGE
6. finishCharactersCoalescing : changed conditional boundary to IFLT → NO_COVERAGE
7. finishCharactersCoalescing : changed conditional boundary to IFNE → NO_COVERAGE
|
if (_pendingInput != 0) { |
|
911
|
6
1. finishCharactersCoalescing : negated conditional → NO_COVERAGE
2. finishCharactersCoalescing : changed conditional boundary to IFEQ → NO_COVERAGE
3. finishCharactersCoalescing : changed conditional boundary to IFGE → NO_COVERAGE
4. finishCharactersCoalescing : changed conditional boundary to IFGT → NO_COVERAGE
5. finishCharactersCoalescing : changed conditional boundary to IFLE → NO_COVERAGE
6. finishCharactersCoalescing : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handleAndAppendPending()) { |
|
912
|
6
1. finishCharactersCoalescing : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharactersCoalescing : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharactersCoalescing : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharactersCoalescing : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. finishCharactersCoalescing : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. finishCharactersCoalescing : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
913
|
|
} |
|
914
|
|
} |
|
915
|
|
throw new UnsupportedOperationException(); |
|
916
|
|
// !!! TBI |
|
917
|
|
// return 0; |
|
918
|
|
} |
|
919
|
|
|
|
920
|
|
/* |
|
921
|
|
/********************************************************************** |
|
922
|
|
/* Async input, methods to feed (push) content to parse |
|
923
|
|
/********************************************************************** |
|
924
|
|
*/ |
|
925
|
|
|
|
926
|
|
@Override |
|
927
|
|
public final boolean needMoreInput() { |
|
928
|
27
1. needMoreInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. needMoreInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. needMoreInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_endOfInput mutated with null check on object → SURVIVED
4. needMoreInput : changed conditional boundary to IF_ICMPGT → SURVIVED
5. needMoreInput : changed conditional boundary to IF_ICMPGT → SURVIVED
6. needMoreInput : changed conditional boundary to IF_ICMPNE → SURVIVED
7. needMoreInput : changed conditional boundary to IFGT → SURVIVED
8. needMoreInput : changed conditional boundary to IFLT → SURVIVED
9. needMoreInput : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. needMoreInput : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. needMoreInput : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. needMoreInput : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. needMoreInput : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. needMoreInput : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. needMoreInput : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
16. needMoreInput : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
17. needMoreInput : changed conditional boundary → KILLED
18. needMoreInput : negated conditional → KILLED
19. needMoreInput : negated conditional → KILLED
20. needMoreInput : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. needMoreInput : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
22. needMoreInput : changed conditional boundary to IF_ICMPEQ → KILLED
23. needMoreInput : changed conditional boundary to IF_ICMPGE → KILLED
24. needMoreInput : changed conditional boundary to IFEQ → KILLED
25. needMoreInput : changed conditional boundary to IFGE → KILLED
26. needMoreInput : changed conditional boundary to IFLE → KILLED
27. needMoreInput : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_inputPtr >=_inputEnd) && !_endOfInput; |
|
929
|
|
} |
|
930
|
|
|
|
931
|
|
@Override |
|
932
|
|
public void feedInput(ByteBuffer buffer) throws XMLStreamException |
|
933
|
|
{ |
|
934
|
|
// Must not have remaining input |
|
935
|
9
1. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. feedInput : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. feedInput : changed conditional boundary → KILLED
5. feedInput : negated conditional → KILLED
6. feedInput : changed conditional boundary to IF_ICMPGT → KILLED
7. feedInput : changed conditional boundary to IF_ICMPGT → KILLED
8. feedInput : changed conditional boundary to IF_ICMPLT → KILLED
9. feedInput : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputPtr < _inputEnd) { |
|
936
|
3
1. feedInput : Replaced operate with second operand → NO_COVERAGE
2. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
3. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
throw new XMLStreamException("Still have "+(_inputEnd - _inputPtr)+" unread bytes"); |
|
937
|
|
} |
|
938
|
|
// and shouldn't have been marked as end-of-input |
|
939
|
7
1. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_endOfInput mutated with null check on object → SURVIVED
2. feedInput : changed conditional boundary to IFGE → SURVIVED
3. feedInput : changed conditional boundary to IFLE → SURVIVED
4. feedInput : negated conditional → KILLED
5. feedInput : changed conditional boundary to IFGT → KILLED
6. feedInput : changed conditional boundary to IFLT → KILLED
7. feedInput : changed conditional boundary to IFNE → KILLED
|
if (_endOfInput) { |
|
940
|
|
throw new XMLStreamException("Already closed, can not feed more input"); |
|
941
|
|
} |
|
942
|
|
// Time to update pointers first |
|
943
|
4
1. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
2. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_origBufferLen mutated with null check on object → SURVIVED
3. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
4. feedInput : Replaced operate with second operand → KILLED
|
_pastBytesOrChars += _origBufferLen; |
|
944
|
4
1. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_rowStartOffset mutated with null check on object → SURVIVED
2. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_origBufferLen mutated with null check on object → SURVIVED
3. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_rowStartOffset mutated with null check on object → SURVIVED
4. feedInput : Replaced operate with second operand → KILLED
|
_rowStartOffset -= _origBufferLen; |
|
945
|
|
|
|
946
|
|
int start = buffer.position(); |
|
947
|
|
int end = buffer.limit(); |
|
948
|
|
|
|
949
|
|
// And then update buffer settings |
|
950
|
1
1. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
_inputBuffer = buffer; |
|
951
|
1
1. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
_inputPtr = start; |
|
952
|
1
1. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
_inputEnd = end; |
|
953
|
2
1. feedInput : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_origBufferLen mutated with null check on object → SURVIVED
2. feedInput : Replaced operate with second operand → KILLED
|
_origBufferLen = end-start; |
|
954
|
|
} |
|
955
|
|
|
|
956
|
|
/* |
|
957
|
|
/********************************************************************** |
|
958
|
|
/* Implementation of parsing API |
|
959
|
|
/********************************************************************** |
|
960
|
|
*/ |
|
961
|
|
|
|
962
|
|
@Override |
|
963
|
|
public final int nextFromProlog(boolean isProlog) throws XMLStreamException |
|
964
|
|
{ |
|
965
|
|
// Had fully complete event? Need to reset state etc: |
|
966
|
12
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPGE → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
7. nextFromProlog : negated conditional → KILLED
8. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_currToken != EVENT_INCOMPLETE) { |
|
967
|
|
// First: keep track of where event started |
|
968
|
1
1. nextFromProlog : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::setStartLocation → SURVIVED
|
setStartLocation(); |
|
969
|
|
|
|
970
|
|
// yet one more special case: after START_DOCUMENT need to check things... |
|
971
|
12
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
7. nextFromProlog : negated conditional → KILLED
8. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_currToken == START_DOCUMENT) { |
|
972
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = EVENT_INCOMPLETE; |
|
973
|
2
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. nextFromProlog : negated conditional → KILLED
|
if (_tokenName != null) { |
|
974
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = PROCESSING_INSTRUCTION; |
|
975
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_AFTER_TARGET; |
|
976
|
2
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. nextFromProlog : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
checkPITargetName(_tokenName); |
|
977
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handlePI(); |
|
978
|
|
} |
|
979
|
|
} else { |
|
980
|
7
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
7. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = _nextEvent = EVENT_INCOMPLETE; |
|
981
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
982
|
|
} |
|
983
|
|
} |
|
984
|
|
// Ok, do we know which event it will be? |
|
985
|
12
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
7. nextFromProlog : negated conditional → KILLED
8. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_nextEvent == EVENT_INCOMPLETE) { // nope |
|
986
|
|
// The very first thing: XML declaration handling |
|
987
|
12
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. nextFromProlog : negated conditional → KILLED
7. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_state == STATE_PROLOG_INITIAL) { |
|
988
|
9
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPNE → SURVIVED
4. nextFromProlog : changed conditional boundary → KILLED
5. nextFromProlog : negated conditional → KILLED
6. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
989
|
2
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
990
|
|
} |
|
991
|
|
// Ok: see if we have what looks like XML declaration; process: |
|
992
|
7
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IFGE → SURVIVED
3. nextFromProlog : negated conditional → KILLED
4. nextFromProlog : changed conditional boundary to IFGT → KILLED
5. nextFromProlog : changed conditional boundary to IFLE → KILLED
6. nextFromProlog : changed conditional boundary to IFLT → KILLED
7. nextFromProlog : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { // already parsing (potential) XML declaration |
|
993
|
|
Boolean b = startXmlDeclaration(); // is or may be XML declaration, so: |
|
994
|
1
1. nextFromProlog : negated conditional → KILLED
|
if (b == null) { // not yet known; bail out |
|
995
|
6
1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
996
|
|
} |
|
997
|
|
// no real XML declaration; syntesize one: |
|
998
|
2
1. nextFromProlog : negated conditional → KILLED
2. nextFromProlog : changed conditional of IF_ACMP → KILLED
|
if (b == Boolean.FALSE) { |
|
999
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = START_DOCUMENT; |
|
1000
|
6
1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return START_DOCUMENT; |
|
1001
|
|
} |
|
1002
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleXmlDeclaration(); |
|
1003
|
|
} |
|
1004
|
13
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
8. nextFromProlog : negated conditional → KILLED
9. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
13. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LT) { // first byte, see if it could be XML declaration |
|
1005
|
8
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. nextFromProlog : Replaced operate with second operand → KILLED
8. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
1006
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted -5 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_XMLDECL_LT; |
|
1007
|
|
Boolean b = startXmlDeclaration(); // is or may be XML declaration, so: |
|
1008
|
1
1. nextFromProlog : negated conditional → KILLED
|
if (b == null) { |
|
1009
|
6
1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
1010
|
|
} |
|
1011
|
2
1. nextFromProlog : negated conditional → KILLED
2. nextFromProlog : changed conditional of IF_ACMP → KILLED
|
if (b == Boolean.FALSE) { |
|
1012
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = START_DOCUMENT; |
|
1013
|
6
1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return START_DOCUMENT; |
|
1014
|
|
} |
|
1015
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleXmlDeclaration(); |
|
1016
|
|
} |
|
1017
|
|
// can't be XML declaration |
|
1018
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1019
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = START_DOCUMENT; |
|
1020
|
6
1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return START_DOCUMENT; |
|
1021
|
|
} |
|
1022
|
|
|
|
1023
|
|
// First: did we have a lone CR at the end of the buffer? |
|
1024
|
7
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IFGE → SURVIVED
3. nextFromProlog : changed conditional boundary to IFLE → SURVIVED
4. nextFromProlog : negated conditional → KILLED
5. nextFromProlog : changed conditional boundary to IFGT → KILLED
6. nextFromProlog : changed conditional boundary to IFLT → KILLED
7. nextFromProlog : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { // yup |
|
1025
|
6
1. nextFromProlog : negated conditional → NO_COVERAGE
2. nextFromProlog : changed conditional boundary to IFEQ → NO_COVERAGE
3. nextFromProlog : changed conditional boundary to IFGE → NO_COVERAGE
4. nextFromProlog : changed conditional boundary to IFGT → NO_COVERAGE
5. nextFromProlog : changed conditional boundary to IFLE → NO_COVERAGE
6. nextFromProlog : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handlePartialCR()) { |
|
1026
|
2
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → NO_COVERAGE
2. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return _currToken; |
|
1027
|
|
} |
|
1028
|
|
} |
|
1029
|
7
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IFGT → SURVIVED
3. nextFromProlog : negated conditional → KILLED
4. nextFromProlog : changed conditional boundary to IFEQ → KILLED
5. nextFromProlog : changed conditional boundary to IFGE → KILLED
6. nextFromProlog : changed conditional boundary to IFLE → KILLED
7. nextFromProlog : changed conditional boundary to IFLT → KILLED
|
while (_state == STATE_DEFAULT) { |
|
1030
|
9
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPNE → SURVIVED
4. nextFromProlog : changed conditional boundary → KILLED
5. nextFromProlog : negated conditional → KILLED
6. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // no more input available |
|
1031
|
7
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_endOfInput mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IFLE → SURVIVED
3. nextFromProlog : negated conditional → KILLED
4. nextFromProlog : changed conditional boundary to IFGE → KILLED
5. nextFromProlog : changed conditional boundary to IFGT → KILLED
6. nextFromProlog : changed conditional boundary to IFLT → KILLED
7. nextFromProlog : changed conditional boundary to IFNE → KILLED
|
if (_endOfInput) { // for good? That may be fine |
|
1032
|
1
1. nextFromProlog : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::setStartLocation → SURVIVED
|
setStartLocation(); |
|
1033
|
6
1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return TOKEN_EOI; |
|
1034
|
|
} |
|
1035
|
2
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
1036
|
|
} |
|
1037
|
9
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromProlog : Replaced operate with second operand → KILLED
9. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1038
|
|
|
|
1039
|
|
/* Really should get white space or '<'... anything else is |
|
1040
|
|
* pretty much an error. |
|
1041
|
|
*/ |
|
1042
|
11
1. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
6. nextFromProlog : negated conditional → KILLED
7. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
|
if (b == BYTE_LT) { // root element, comment, proc instr? |
|
1043
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PROLOG_SEEN_LT; |
|
1044
|
|
break; |
|
1045
|
|
} |
|
1046
|
44
1. nextFromProlog : negated conditional → SURVIVED
2. nextFromProlog : negated conditional → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. nextFromProlog : changed conditional boundary to IF_ICMPGE → SURVIVED
5. nextFromProlog : changed conditional boundary to IF_ICMPGE → SURVIVED
6. nextFromProlog : changed conditional boundary to IF_ICMPGE → SURVIVED
7. nextFromProlog : changed conditional boundary to IF_ICMPGE → SURVIVED
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
10. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
11. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
12. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
13. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
14. nextFromProlog : changed conditional boundary to IF_ICMPNE → SURVIVED
15. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
16. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
17. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
18. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
19. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
20. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
21. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
22. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
23. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
24. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
25. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
26. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
27. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
28. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
29. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
30. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
31. nextFromProlog : negated conditional → KILLED
32. nextFromProlog : negated conditional → KILLED
33. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
34. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
35. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
36. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
37. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
38. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
39. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
40. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
41. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
42. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
43. nextFromProlog : changed conditional boundary to IF_ICMPNE → KILLED
44. nextFromProlog : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR |
|
1047
|
|
|| b == BYTE_LF || b == BYTE_TAB) { |
|
1048
|
|
// Prolog/epilog ws is to be skipped, not part of Infoset |
|
1049
|
6
1. nextFromProlog : changed conditional boundary to IFGE → SURVIVED
2. nextFromProlog : changed conditional boundary to IFGT → SURVIVED
3. nextFromProlog : negated conditional → KILLED
4. nextFromProlog : changed conditional boundary to IFEQ → KILLED
5. nextFromProlog : changed conditional boundary to IFLE → KILLED
6. nextFromProlog : changed conditional boundary to IFLT → KILLED
|
if (!asyncSkipSpace()) { // ran out of input? |
|
1050
|
7
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_endOfInput mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IFGE → SURVIVED
3. nextFromProlog : changed conditional boundary to IFLE → SURVIVED
4. nextFromProlog : negated conditional → KILLED
5. nextFromProlog : changed conditional boundary to IFGT → KILLED
6. nextFromProlog : changed conditional boundary to IFLT → KILLED
7. nextFromProlog : changed conditional boundary to IFNE → KILLED
|
if (_endOfInput) { // for good? That may be fine |
|
1051
|
1
1. nextFromProlog : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::setStartLocation → NO_COVERAGE
|
setStartLocation(); |
|
1052
|
6
1. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. nextFromProlog : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return TOKEN_EOI; |
|
1053
|
|
} |
|
1054
|
2
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
1055
|
|
} |
|
1056
|
|
} else { |
|
1057
|
1
1. nextFromProlog : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(isProlog, decodeCharForError(b), null); |
|
1058
|
|
} |
|
1059
|
|
} |
|
1060
|
12
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. nextFromProlog : negated conditional → KILLED
9. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_state == STATE_PROLOG_SEEN_LT) { |
|
1061
|
9
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPNE → SURVIVED
4. nextFromProlog : changed conditional boundary → KILLED
5. nextFromProlog : negated conditional → KILLED
6. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1062
|
2
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
1063
|
|
} |
|
1064
|
9
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromProlog : Replaced operate with second operand → KILLED
9. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1065
|
11
1. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED
7. nextFromProlog : negated conditional → KILLED
8. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_EXCL) { // comment or DOCTYPE declaration? |
|
1066
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PROLOG_DECL; |
|
1067
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handlePrologDeclStart(isProlog); |
|
1068
|
|
} |
|
1069
|
11
1. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
7. nextFromProlog : negated conditional → KILLED
8. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_QMARK) { // PI |
|
1070
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = PROCESSING_INSTRUCTION; |
|
1071
|
6
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1072
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handlePI(); |
|
1073
|
|
} |
|
1074
|
17
1. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
2. nextFromProlog : changed conditional boundary to IFGE → SURVIVED
3. nextFromProlog : changed conditional boundary to IFGT → SURVIVED
4. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
8. nextFromProlog : negated conditional → KILLED
9. nextFromProlog : negated conditional → KILLED
10. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
13. nextFromProlog : changed conditional boundary to IF_ICMPGT → KILLED
14. nextFromProlog : changed conditional boundary to IF_ICMPNE → KILLED
15. nextFromProlog : changed conditional boundary to IFEQ → KILLED
16. nextFromProlog : changed conditional boundary to IFLE → KILLED
17. nextFromProlog : changed conditional boundary to IFLT → KILLED
|
if (b == BYTE_SLASH || !isProlog) { |
|
1075
|
1
1. nextFromProlog : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(isProlog, decodeCharForError(b), " (unbalanced start/end tags?)"); |
|
1076
|
|
} |
|
1077
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleStartElementStart(b); |
|
1078
|
|
} |
|
1079
|
12
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromProlog : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromProlog : changed conditional boundary to IF_ICMPLT → SURVIVED
5. nextFromProlog : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. nextFromProlog : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. nextFromProlog : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. nextFromProlog : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
9. nextFromProlog : negated conditional → KILLED
10. nextFromProlog : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. nextFromProlog : changed conditional boundary to IF_ICMPEQ → KILLED
12. nextFromProlog : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_state == STATE_PROLOG_DECL) { |
|
1080
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handlePrologDeclStart(isProlog); |
|
1081
|
|
} |
|
1082
|
|
// should never have anything else... |
|
1083
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return throwInternal(); |
|
1084
|
|
} |
|
1085
|
|
|
|
1086
|
|
// At this point, we do know the event type |
|
1087
|
1
1. nextFromProlog : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
switch (_nextEvent) { |
|
1088
|
|
case START_ELEMENT: |
|
1089
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleStartElement(); |
|
1090
|
|
case START_DOCUMENT: |
|
1091
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleXmlDeclaration(); |
|
1092
|
|
case PROCESSING_INSTRUCTION: |
|
1093
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handlePI(); |
|
1094
|
|
case COMMENT: |
|
1095
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleComment(); |
|
1096
|
|
case DTD: |
|
1097
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleDTD(); |
|
1098
|
|
} |
|
1099
|
1
1. nextFromProlog : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return throwInternal(); // should never get here |
|
1100
|
|
} |
|
1101
|
|
|
|
1102
|
|
@Override |
|
1103
|
|
public int nextFromTree() throws XMLStreamException |
|
1104
|
|
{ |
|
1105
|
|
// Had a fully complete event? Need to reset state: |
|
1106
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGE → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_currToken != EVENT_INCOMPLETE) { |
|
1107
|
|
/* First, need to handle some complications arising from |
|
1108
|
|
* empty elements, and namespace binding/unbinding: |
|
1109
|
|
*/ |
|
1110
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromTree : negated conditional → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_currToken == START_ELEMENT) { |
|
1111
|
7
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_isEmptyTag mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IFLE → SURVIVED
3. nextFromTree : negated conditional → KILLED
4. nextFromTree : changed conditional boundary to IFGE → KILLED
5. nextFromTree : changed conditional boundary to IFGT → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
7. nextFromTree : changed conditional boundary to IFNE → KILLED
|
if (_isEmptyTag) { |
|
1112
|
8
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. nextFromTree : Replaced operate with second operand → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
--_depth; |
|
1113
|
|
// Important: do NOT overwrite start location, same as with START_ELEMENT |
|
1114
|
7
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_currToken = END_ELEMENT); |
|
1115
|
|
} |
|
1116
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. nextFromTree : negated conditional → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (_currToken == END_ELEMENT) { |
|
1117
|
2
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED
|
_currElem = _currElem.getParent(); |
|
1118
|
|
// Any namespace declarations that need to be unbound? |
|
1119
|
11
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_lastNsDecl mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_lastNsDecl mutated with null check on object → SURVIVED
3. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
4. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
5. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
6. nextFromTree : changed conditional boundary to IF_ICMPNE → SURVIVED
7. nextFromTree : changed conditional boundary → KILLED
8. nextFromTree : negated conditional → KILLED
9. nextFromTree : negated conditional → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
|
while (_lastNsDecl != null && _lastNsDecl.getLevel() >= _depth) { |
|
1120
|
2
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_lastNsDecl mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_lastNsDecl mutated with null check on object → SURVIVED
|
_lastNsDecl = _lastNsDecl.unbind(); |
|
1121
|
|
} |
|
1122
|
|
} |
|
1123
|
|
|
|
1124
|
|
// keep track of where event started |
|
1125
|
1
1. nextFromTree : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::setStartLocation → SURVIVED
|
setStartLocation(); |
|
1126
|
|
|
|
1127
|
|
/* Only CHARACTERS can remain incomplete: this happens if |
|
1128
|
|
* first character is decoded, but coalescing mode is NOT |
|
1129
|
|
* set. Skip can not therefore block, nor will add pending |
|
1130
|
|
* input. Can also occur when we have run out of input |
|
1131
|
|
*/ |
|
1132
|
7
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IFLE → SURVIVED
3. nextFromTree : negated conditional → KILLED
4. nextFromTree : changed conditional boundary to IFGE → KILLED
5. nextFromTree : changed conditional boundary to IFGT → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
7. nextFromTree : changed conditional boundary to IFNE → KILLED
|
if (_tokenIncomplete) { |
|
1133
|
6
1. nextFromTree : changed conditional boundary to IFGT → SURVIVED
2. nextFromTree : negated conditional → KILLED
3. nextFromTree : changed conditional boundary to IFEQ → KILLED
4. nextFromTree : changed conditional boundary to IFGE → KILLED
5. nextFromTree : changed conditional boundary to IFLE → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
|
if (!skipCharacters()) { // couldn't complete skipping |
|
1134
|
6
1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
1135
|
|
} |
|
1136
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_tokenIncomplete = false; |
|
1137
|
|
} |
|
1138
|
7
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
7. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = _nextEvent = EVENT_INCOMPLETE; |
|
1139
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1140
|
|
} |
|
1141
|
|
|
|
1142
|
|
// Don't yet know the type? |
|
1143
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPLT → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_nextEvent == EVENT_INCOMPLETE) { |
|
1144
|
7
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IFGT → SURVIVED
3. nextFromTree : negated conditional → KILLED
4. nextFromTree : changed conditional boundary to IFEQ → KILLED
5. nextFromTree : changed conditional boundary to IFGE → KILLED
6. nextFromTree : changed conditional boundary to IFLE → KILLED
7. nextFromTree : changed conditional boundary to IFLT → KILLED
|
if (_state == STATE_DEFAULT) { |
|
1145
|
|
/* We can only have pending input for (incomplete) |
|
1146
|
|
* CHARACTERS event. |
|
1147
|
|
*/ |
|
1148
|
7
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. nextFromTree : negated conditional → KILLED
3. nextFromTree : changed conditional boundary to IFGE → KILLED
4. nextFromTree : changed conditional boundary to IFGT → KILLED
5. nextFromTree : changed conditional boundary to IFLE → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
7. nextFromTree : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { // CR, or multi-byte? |
|
1149
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = CHARACTERS; |
|
1150
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return startCharactersPending(); |
|
1151
|
|
} |
|
1152
|
9
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPNE → SURVIVED
4. nextFromTree : changed conditional boundary → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // nothing we can do? |
|
1153
|
2
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; // i.e. EVENT_INCOMPLETE |
|
1154
|
|
} |
|
1155
|
9
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromTree : Replaced operate with second operand → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1156
|
11
1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_LT) { // root element, comment, proc instr? |
|
1157
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_TREE_SEEN_LT; |
|
1158
|
11
1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (b == BYTE_AMP) { |
|
1159
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_TREE_SEEN_AMP; |
|
1160
|
|
} else { |
|
1161
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = CHARACTERS; |
|
1162
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return startCharacters(b); |
|
1163
|
|
} |
|
1164
|
|
} |
|
1165
|
|
|
|
1166
|
9
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPNE → SURVIVED
4. nextFromTree : changed conditional boundary → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1167
|
2
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; // i.e. EVENT_INCOMPLETE |
|
1168
|
|
} |
|
1169
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromTree : negated conditional → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_state == STATE_TREE_SEEN_LT) { |
|
1170
|
|
// Ok, so we've just seen the less-than char... |
|
1171
|
9
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromTree : Replaced operate with second operand → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1172
|
11
1. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_EXCL) { // comment or CDATA |
|
1173
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_TREE_SEEN_EXCL; |
|
1174
|
11
1. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (b == BYTE_QMARK) { |
|
1175
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = PROCESSING_INSTRUCTION; |
|
1176
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1177
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handlePI(); |
|
1178
|
11
1. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (b == BYTE_SLASH) { |
|
1179
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleEndElementStart(); |
|
1180
|
|
} else { |
|
1181
|
|
// Probably start element -- need to retain first char tho |
|
1182
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleStartElementStart(b); |
|
1183
|
|
} |
|
1184
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. nextFromTree : negated conditional → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (_state == STATE_TREE_SEEN_AMP) { |
|
1185
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleEntityStartingToken(); |
|
1186
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPLT → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
|
} else if (_state == STATE_TREE_NAMED_ENTITY_START) { |
|
1187
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleNamedEntityStartingToken(); |
|
1188
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPLT → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
|
} else if (_state == STATE_TREE_NUMERIC_ENTITY_START) { |
|
1189
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleNumericEntityStartingToken(); |
|
1190
|
|
} |
|
1191
|
|
|
|
1192
|
12
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
4. nextFromTree : changed conditional boundary to IF_ICMPLT → SURVIVED
5. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. nextFromTree : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
9. nextFromTree : negated conditional → KILLED
10. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
12. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_state == STATE_TREE_SEEN_EXCL) { |
|
1193
|
9
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPNE → SURVIVED
4. nextFromTree : changed conditional boundary → KILLED
5. nextFromTree : negated conditional → KILLED
6. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
7. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
8. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1194
|
2
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; // i.e. EVENT_INCOMPLETE |
|
1195
|
|
} |
|
1196
|
9
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. nextFromTree : Replaced operate with second operand → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1197
|
|
// Comment or CDATA? |
|
1198
|
11
1. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
7. nextFromTree : negated conditional → KILLED
8. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_HYPHEN) { // Comment |
|
1199
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = COMMENT; |
|
1200
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1201
|
11
1. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
2. nextFromTree : changed conditional boundary to IF_ICMPGT → SURVIVED
3. nextFromTree : changed conditional boundary to IF_ICMPLT → SURVIVED
4. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. nextFromTree : Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED
8. nextFromTree : negated conditional → KILLED
9. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. nextFromTree : changed conditional boundary to IF_ICMPEQ → KILLED
11. nextFromTree : changed conditional boundary to IF_ICMPGE → KILLED
|
} else if (b == BYTE_LBRACKET) { // CDATA |
|
1202
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = CDATA; |
|
1203
|
6
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. nextFromTree : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. nextFromTree : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. nextFromTree : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. nextFromTree : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. nextFromTree : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1204
|
|
} else { |
|
1205
|
1
1. nextFromTree : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
reportTreeUnexpChar(decodeCharForError(b), " (expected either '-' for COMMENT or '[CDATA[' for CDATA section)"); |
|
1206
|
|
} |
|
1207
|
|
} else { |
|
1208
|
|
throwInternal(); |
|
1209
|
|
} |
|
1210
|
|
} |
|
1211
|
|
|
|
1212
|
|
/* We know the type; event is usually partially processed |
|
1213
|
|
* and needs to be completely read. |
|
1214
|
|
*/ |
|
1215
|
1
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
switch (_nextEvent) { |
|
1216
|
|
case START_ELEMENT: |
|
1217
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleStartElement(); |
|
1218
|
|
case END_ELEMENT: |
|
1219
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleEndElement(); |
|
1220
|
|
case PROCESSING_INSTRUCTION: |
|
1221
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handlePI(); |
|
1222
|
|
case COMMENT: |
|
1223
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleComment(); |
|
1224
|
|
case CDATA: |
|
1225
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleCData(); |
|
1226
|
|
case CHARACTERS: |
|
1227
|
7
1. nextFromTree : negated conditional → SURVIVED
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. nextFromTree : changed conditional boundary to IFEQ → SURVIVED
4. nextFromTree : changed conditional boundary to IFGE → SURVIVED
5. nextFromTree : changed conditional boundary to IFGT → SURVIVED
6. nextFromTree : changed conditional boundary to IFLE → SURVIVED
7. nextFromTree : changed conditional boundary to IFLT → SURVIVED
|
if (!_cfgLazyParsing) { |
|
1228
|
|
// !!! TBI: how would non-lazy mode work? |
|
1229
|
7
1. nextFromTree : negated conditional → NO_COVERAGE
2. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgCoalescing mutated with null check on object → NO_COVERAGE
3. nextFromTree : changed conditional boundary to IFGE → NO_COVERAGE
4. nextFromTree : changed conditional boundary to IFGT → NO_COVERAGE
5. nextFromTree : changed conditional boundary to IFLE → NO_COVERAGE
6. nextFromTree : changed conditional boundary to IFLT → NO_COVERAGE
7. nextFromTree : changed conditional boundary to IFNE → NO_COVERAGE
|
if (_cfgCoalescing) { |
|
1230
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return finishCharactersCoalescing(); |
|
1231
|
|
} |
|
1232
|
|
} |
|
1233
|
7
1. nextFromTree : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. nextFromTree : negated conditional → KILLED
3. nextFromTree : changed conditional boundary to IFGE → KILLED
4. nextFromTree : changed conditional boundary to IFGT → KILLED
5. nextFromTree : changed conditional boundary to IFLE → KILLED
6. nextFromTree : changed conditional boundary to IFLT → KILLED
7. nextFromTree : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { // multi-byte, or CR without LF |
|
1234
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return startCharactersPending(); |
|
1235
|
|
} |
|
1236
|
|
// Otherwise, should not get here |
|
1237
|
|
throwInternal(); |
|
1238
|
|
// case ENTITY_REFERENCE: |
|
1239
|
|
} |
|
1240
|
1
1. nextFromTree : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return throwInternal(); // never gets here |
|
1241
|
|
} |
|
1242
|
|
|
|
1243
|
|
/* |
|
1244
|
|
/********************************************************************** |
|
1245
|
|
/* Second-level parsing, prolog (XML declaration, DOCTYPE) |
|
1246
|
|
/********************************************************************** |
|
1247
|
|
*/ |
|
1248
|
|
|
|
1249
|
|
private final int handlePrologDeclStart(boolean isProlog) throws XMLStreamException |
|
1250
|
|
{ |
|
1251
|
9
1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handlePrologDeclStart : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handlePrologDeclStart : changed conditional boundary → KILLED
5. handlePrologDeclStart : negated conditional → KILLED
6. handlePrologDeclStart : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePrologDeclStart : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // nothing we can do? |
|
1252
|
6
1. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePrologDeclStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
1253
|
|
} |
|
1254
|
9
1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handlePrologDeclStart : Replaced operate with second operand → KILLED
9. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1255
|
|
// So far, we have seen "<!", need to know if it's DTD or COMMENT |
|
1256
|
11
1. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
7. handlePrologDeclStart : negated conditional → KILLED
8. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handlePrologDeclStart : changed conditional boundary to IF_ICMPEQ → KILLED
10. handlePrologDeclStart : changed conditional boundary to IF_ICMPGE → KILLED
11. handlePrologDeclStart : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_HYPHEN) { |
|
1257
|
6
1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = COMMENT; |
|
1258
|
6
1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1259
|
1
1. handlePrologDeclStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleComment(); |
|
1260
|
|
} |
|
1261
|
11
1. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handlePrologDeclStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handlePrologDeclStart : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 68 with 1 → KILLED
8. handlePrologDeclStart : negated conditional → KILLED
9. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handlePrologDeclStart : changed conditional boundary to IF_ICMPEQ → KILLED
11. handlePrologDeclStart : changed conditional boundary to IF_ICMPGE → KILLED
|
if (b == BYTE_D) { |
|
1262
|
6
1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
6. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = DTD; |
|
1263
|
6
1. handlePrologDeclStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1264
|
1
1. handlePrologDeclStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleDTD(); |
|
1265
|
|
} |
|
1266
|
1
1. handlePrologDeclStart : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(isProlog, decodeCharForError(b), " (expected '-' for COMMENT)"); |
|
1267
|
6
1. handlePrologDeclStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePrologDeclStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePrologDeclStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePrologDeclStart : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handlePrologDeclStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePrologDeclStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; // never gets here |
|
1268
|
|
} |
|
1269
|
|
|
|
1270
|
|
/** |
|
1271
|
|
* Method that deals with recognizing XML declaration, but not with parsing |
|
1272
|
|
* its contents. |
|
1273
|
|
* |
|
1274
|
|
* @return null if parsing is inconclusive (may or may not be XML declaration); |
|
1275
|
|
* Boolean.TRUE if complete XML declaration, and Boolean.FALSE if something |
|
1276
|
|
* else |
|
1277
|
|
*/ |
|
1278
|
|
private final Boolean startXmlDeclaration() throws XMLStreamException |
|
1279
|
|
{ |
|
1280
|
9
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startXmlDeclaration : changed conditional boundary → KILLED
5. startXmlDeclaration : negated conditional → KILLED
6. startXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
7. startXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
8. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
9. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1281
|
1
1. startXmlDeclaration : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
1282
|
|
} |
|
1283
|
12
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
3. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted -5 with 1 → KILLED
7. startXmlDeclaration : negated conditional → KILLED
8. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. startXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
10. startXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
11. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
12. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_pendingInput == PENDING_STATE_XMLDECL_LT) { // "<" at start of doc |
|
1284
|
13
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
7. startXmlDeclaration : negated conditional → KILLED
8. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. startXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
10. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
11. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
12. startXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
13. startXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputBuffer.get(_inputPtr) != BYTE_QMARK) { // some other |
|
1285
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
1286
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PROLOG_SEEN_LT; |
|
1287
|
1
1. startXmlDeclaration : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return Boolean.FALSE; |
|
1288
|
|
} |
|
1289
|
8
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. startXmlDeclaration : Replaced operate with second operand → KILLED
8. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
1290
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted -6 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_XMLDECL_LTQ; |
|
1291
|
9
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startXmlDeclaration : changed conditional boundary → KILLED
5. startXmlDeclaration : negated conditional → KILLED
6. startXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
7. startXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
8. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
9. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1292
|
1
1. startXmlDeclaration : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
1293
|
|
} |
|
1294
|
|
} |
|
1295
|
12
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
3. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted -6 with 1 → KILLED
7. startXmlDeclaration : negated conditional → KILLED
8. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. startXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
10. startXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
11. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
12. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_pendingInput == PENDING_STATE_XMLDECL_LTQ) { // "<?" at start of doc |
|
1296
|
9
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. startXmlDeclaration : Replaced operate with second operand → KILLED
9. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1297
|
1
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
_tokenName = parseNewName(b); |
|
1298
|
2
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. startXmlDeclaration : negated conditional → KILLED
|
if (_tokenName == null) { // incomplete |
|
1299
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted -7 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_XMLDECL_TARGET; |
|
1300
|
1
1. startXmlDeclaration : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
1301
|
|
} |
|
1302
|
|
// xml or not? |
|
1303
|
7
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. startXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
3. startXmlDeclaration : negated conditional → KILLED
4. startXmlDeclaration : changed conditional boundary to IFEQ → KILLED
5. startXmlDeclaration : changed conditional boundary to IFGE → KILLED
6. startXmlDeclaration : changed conditional boundary to IFLE → KILLED
7. startXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!"xml".equals(_tokenName.getPrefixedName())) { // nope: some other PI |
|
1304
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
1305
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_AFTER_TARGET; |
|
1306
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = PROCESSING_INSTRUCTION; |
|
1307
|
2
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. startXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
checkPITargetName(_tokenName); |
|
1308
|
1
1. startXmlDeclaration : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return Boolean.FALSE; |
|
1309
|
|
} |
|
1310
|
12
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
3. startXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
4. startXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
5. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted -7 with 1 → KILLED
9. startXmlDeclaration : negated conditional → KILLED
10. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. startXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
12. startXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
|
} else if (_pendingInput == PENDING_STATE_XMLDECL_TARGET) { // "<?" at start of doc, part of name |
|
1311
|
2
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. startXmlDeclaration : negated conditional → KILLED
|
if ((_tokenName = parsePName()) == null) { // incomplete |
|
1312
|
1
1. startXmlDeclaration : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
1313
|
|
} |
|
1314
|
7
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. startXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
3. startXmlDeclaration : negated conditional → KILLED
4. startXmlDeclaration : changed conditional boundary to IFEQ → KILLED
5. startXmlDeclaration : changed conditional boundary to IFGE → KILLED
6. startXmlDeclaration : changed conditional boundary to IFLE → KILLED
7. startXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!"xml".equals(_tokenName.getPrefixedName())) { |
|
1315
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
1316
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_AFTER_TARGET; |
|
1317
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = PROCESSING_INSTRUCTION; |
|
1318
|
2
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. startXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
checkPITargetName(_tokenName); |
|
1319
|
1
1. startXmlDeclaration : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return Boolean.FALSE; |
|
1320
|
|
} |
|
1321
|
|
} else { |
|
1322
|
|
throwInternal(); |
|
1323
|
|
} |
|
1324
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
1325
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = START_DOCUMENT; |
|
1326
|
6
1. startXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. startXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. startXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_XML; |
|
1327
|
1
1. startXmlDeclaration : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return Boolean.TRUE; |
|
1328
|
|
} |
|
1329
|
|
|
|
1330
|
|
/** |
|
1331
|
|
* Method called to complete parsing of XML declaration, once it has |
|
1332
|
|
* been reliably detected. |
|
1333
|
|
* |
|
1334
|
|
* @return Completed token (START_DOCUMENT), if fully parsed; incomplete (EVENT_INCOMPLETE) |
|
1335
|
|
* otherwise |
|
1336
|
|
*/ |
|
1337
|
|
private int handleXmlDeclaration() throws XMLStreamException |
|
1338
|
|
{ |
|
1339
|
|
// First: left-over CRs? |
|
1340
|
12
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
9. handleXmlDeclaration : negated conditional → KILLED
10. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
12. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_CR) { |
|
1341
|
6
1. handleXmlDeclaration : negated conditional → NO_COVERAGE
2. handleXmlDeclaration : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleXmlDeclaration : changed conditional boundary to IFGE → NO_COVERAGE
4. handleXmlDeclaration : changed conditional boundary to IFGT → NO_COVERAGE
5. handleXmlDeclaration : changed conditional boundary to IFLE → NO_COVERAGE
6. handleXmlDeclaration : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handlePartialCR()) { |
|
1342
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
1343
|
|
} |
|
1344
|
|
} |
|
1345
|
|
|
|
1346
|
|
main_loop: |
|
1347
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleXmlDeclaration : changed conditional boundary → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → TIMED_OUT
7. handleXmlDeclaration : negated conditional → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
while (_inputPtr < _inputEnd) { |
|
1348
|
1
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
switch (_state) { |
|
1349
|
|
case STATE_XMLDECL_AFTER_XML: // "<?xml", need space |
|
1350
|
|
{ |
|
1351
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleXmlDeclaration : Replaced operate with second operand → KILLED
9. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1352
|
44
1. handleXmlDeclaration : negated conditional → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : negated conditional → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handleXmlDeclaration : negated conditional → KILLED
37. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
42. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
43. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
44. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR || b == BYTE_LF || b == BYTE_TAB) { |
|
1353
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_BEFORE_VERSION; |
|
1354
|
|
} else { |
|
1355
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected space after 'xml' in xml declaration)"); |
|
1356
|
|
} |
|
1357
|
|
} |
|
1358
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1359
|
|
break; |
|
1360
|
|
} |
|
1361
|
|
// fall through |
|
1362
|
|
case STATE_XMLDECL_BEFORE_VERSION: |
|
1363
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
3. handleXmlDeclaration : negated conditional → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
|
if (!asyncSkipSpace()) { // not enough input |
|
1364
|
|
break; |
|
1365
|
|
} |
|
1366
|
11
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
9. handleXmlDeclaration : Replaced operate with second operand → KILLED
10. handleXmlDeclaration : negated conditional → KILLED
11. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if ((_tokenName = parseNewName(_inputBuffer.get(_inputPtr++))) == null) { // incomplete |
|
1367
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_VERSION; |
|
1368
|
|
break; |
|
1369
|
|
} |
|
1370
|
7
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!_tokenName.hasPrefixedName("version")) { |
|
1371
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
2. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
reportInputProblem("Unexpected keyword '"+_tokenName.getPrefixedName()+"' in XML declaration: expected 'version'"); |
|
1372
|
|
} |
|
1373
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_VERSION; |
|
1374
|
|
continue main_loop; |
|
1375
|
|
case STATE_XMLDECL_VERSION: // "<?xml ", part of "version" |
|
1376
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : negated conditional → KILLED
|
if ((_tokenName = parsePName()) == null) { // incomplete |
|
1377
|
|
break; |
|
1378
|
|
} |
|
1379
|
7
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!_tokenName.hasPrefixedName("version")) { |
|
1380
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
2. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
reportInputProblem("Unexpected keyword '"+_tokenName.getPrefixedName()+"' in XML declaration: expected 'version'"); |
|
1381
|
|
} |
|
1382
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_VERSION; |
|
1383
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1384
|
|
break; |
|
1385
|
|
} |
|
1386
|
|
// fall through |
|
1387
|
|
case STATE_XMLDECL_AFTER_VERSION: // "<?xml version", need space or '=' |
|
1388
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
2. handleXmlDeclaration : negated conditional → TIMED_OUT
3. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
|
if (!asyncSkipSpace()) { // not enough input |
|
1389
|
|
break; |
|
1390
|
|
} |
|
1391
|
|
{ |
|
1392
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleXmlDeclaration : Replaced operate with second operand → KILLED
9. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1393
|
11
1. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED
6. handleXmlDeclaration : negated conditional → KILLED
7. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_EQ) { |
|
1394
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected '=' after 'version' in xml declaration)"); |
|
1395
|
|
} |
|
1396
|
|
} |
|
1397
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_VERSION_EQ; |
|
1398
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1399
|
|
break; |
|
1400
|
|
} |
|
1401
|
|
// fall through |
|
1402
|
|
case STATE_XMLDECL_VERSION_EQ: // "<?xml version=", need space or quote |
|
1403
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
2. handleXmlDeclaration : negated conditional → TIMED_OUT
3. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
|
if (!asyncSkipSpace()) { // skip space, if any |
|
1404
|
|
break; |
|
1405
|
|
} |
|
1406
|
10
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
9. handleXmlDeclaration : Replaced operate with second operand → KILLED
10. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemAttrQuote = _inputBuffer.get(_inputPtr++); |
|
1407
|
24
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED
12. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED
13. handleXmlDeclaration : negated conditional → KILLED
14. handleXmlDeclaration : negated conditional → KILLED
15. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
18. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
19. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
20. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
21. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
22. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
23. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
24. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_elemAttrQuote != BYTE_QUOT && _elemAttrQuote != BYTE_APOS) { |
|
1408
|
7
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
7. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(_elemAttrQuote), " (expected '\"' or ''' in xml declaration for version value)"); |
|
1409
|
|
} |
|
1410
|
|
{ |
|
1411
|
1
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] buf = _textBuilder.resetWithEmpty(); |
|
1412
|
20
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
11. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
15. handleXmlDeclaration : negated conditional → KILLED
16. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
18. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
19. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
20. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (_inputPtr >= _inputEnd || !parseXmlDeclAttr(buf, 0)) { |
|
1413
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_VERSION_VALUE; |
|
1414
|
|
break; |
|
1415
|
|
} |
|
1416
|
|
} |
|
1417
|
1
1. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlVersion → KILLED
|
verifyAndSetXmlVersion(); |
|
1418
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_VERSION_VALUE; |
|
1419
|
|
continue main_loop; |
|
1420
|
|
|
|
1421
|
|
case STATE_XMLDECL_VERSION_VALUE: // parsing version value |
|
1422
|
8
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
8. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!parseXmlDeclAttr(_textBuilder.getBufferWithoutReset(), _textBuilder.getCurrentLength())) { |
|
1423
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_VERSION_VALUE; |
|
1424
|
|
break; |
|
1425
|
|
} |
|
1426
|
1
1. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlVersion → KILLED
|
verifyAndSetXmlVersion(); |
|
1427
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_VERSION_VALUE; |
|
1428
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
6. handleXmlDeclaration : changed conditional boundary → KILLED
7. handleXmlDeclaration : negated conditional → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1429
|
|
break; |
|
1430
|
|
} |
|
1431
|
|
// fall through |
|
1432
|
|
|
|
1433
|
|
case STATE_XMLDECL_AFTER_VERSION_VALUE: // version got; need space or '?' |
|
1434
|
|
{ |
|
1435
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleXmlDeclaration : Replaced operate with second operand → KILLED
9. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1436
|
11
1. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
6. handleXmlDeclaration : negated conditional → KILLED
7. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
|
if (b == BYTE_QMARK) { |
|
1437
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 20 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
_state = STATE_XMLDECL_ENDQ; |
|
1438
|
|
continue main_loop; |
|
1439
|
|
} |
|
1440
|
44
1. handleXmlDeclaration : negated conditional → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : negated conditional → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handleXmlDeclaration : negated conditional → KILLED
37. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
42. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
43. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
44. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR || b == BYTE_LF || b == BYTE_TAB) { |
|
1441
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_BEFORE_ENCODING; |
|
1442
|
|
} else { |
|
1443
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected space after version value in xml declaration)"); |
|
1444
|
|
} |
|
1445
|
|
} |
|
1446
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1447
|
|
break; |
|
1448
|
|
} |
|
1449
|
|
// fall through |
|
1450
|
|
|
|
1451
|
|
case STATE_XMLDECL_BEFORE_ENCODING: // version, value, space got, need '?' or 'e' |
|
1452
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
2. handleXmlDeclaration : negated conditional → TIMED_OUT
3. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
|
if (!asyncSkipSpace()) { // not enough input |
|
1453
|
|
break; |
|
1454
|
|
} |
|
1455
|
|
{ |
|
1456
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleXmlDeclaration : Replaced operate with second operand → KILLED
9. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1457
|
11
1. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
7. handleXmlDeclaration : negated conditional → KILLED
8. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_QMARK) { |
|
1458
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 20 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_ENDQ; |
|
1459
|
|
continue main_loop; |
|
1460
|
|
} |
|
1461
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : negated conditional → KILLED
|
if ((_tokenName = parseNewName(b)) == null) { // incomplete |
|
1462
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_ENCODING; |
|
1463
|
|
break; |
|
1464
|
|
} |
|
1465
|
|
// Can actually also get "standalone" instead... |
|
1466
|
7
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFLE → SURVIVED
3. handleXmlDeclaration : negated conditional → KILLED
4. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFGT → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFNE → KILLED
|
if (_tokenName.hasPrefixedName("encoding")) { |
|
1467
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_ENCODING; |
|
1468
|
7
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFLE → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFLT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFGT → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFNE → KILLED
|
} else if (_tokenName.hasPrefixedName("standalone")) { |
|
1469
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_STANDALONE; |
|
1470
|
|
continue main_loop; |
|
1471
|
|
} else { |
|
1472
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
2. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
reportInputProblem("Unexpected keyword '"+_tokenName.getPrefixedName()+"' in XML declaration: expected 'encoding'"); |
|
1473
|
|
} |
|
1474
|
|
} |
|
1475
|
|
continue main_loop; |
|
1476
|
|
|
|
1477
|
|
case STATE_XMLDECL_ENCODING: // parsing "encoding" |
|
1478
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : negated conditional → KILLED
|
if ((_tokenName = parsePName()) == null) { // incomplete |
|
1479
|
|
break; |
|
1480
|
|
} |
|
1481
|
|
// Can actually also get "standalone" instead... |
|
1482
|
7
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFLE → SURVIVED
3. handleXmlDeclaration : negated conditional → KILLED
4. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFGT → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFNE → KILLED
|
if (_tokenName.hasPrefixedName("encoding")) { |
|
1483
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_ENCODING; |
|
1484
|
7
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFLE → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFLT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFGT → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFNE → KILLED
|
} else if (_tokenName.hasPrefixedName("standalone")) { |
|
1485
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_STANDALONE; |
|
1486
|
|
continue main_loop; |
|
1487
|
|
} else { |
|
1488
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
2. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
reportInputProblem("Unexpected keyword '"+_tokenName.getPrefixedName()+"' in XML declaration: expected 'encoding'"); |
|
1489
|
|
} |
|
1490
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1491
|
|
break; |
|
1492
|
|
} |
|
1493
|
|
// fall through |
|
1494
|
|
case STATE_XMLDECL_AFTER_ENCODING: // got "encoding"; must get ' ' or '=' |
|
1495
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
3. handleXmlDeclaration : negated conditional → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
|
if (!asyncSkipSpace()) { // not enough input |
|
1496
|
|
break; |
|
1497
|
|
} |
|
1498
|
|
{ |
|
1499
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleXmlDeclaration : Replaced operate with second operand → KILLED
9. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1500
|
11
1. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED
6. handleXmlDeclaration : negated conditional → KILLED
7. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_EQ) { |
|
1501
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected '=' after 'encoding' in xml declaration)"); |
|
1502
|
|
} |
|
1503
|
|
} |
|
1504
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_ENCODING_EQ; |
|
1505
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1506
|
|
break; |
|
1507
|
|
} |
|
1508
|
|
// fall through |
|
1509
|
|
case STATE_XMLDECL_ENCODING_EQ: // "encoding=" |
|
1510
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
3. handleXmlDeclaration : negated conditional → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
|
if (!asyncSkipSpace()) { // skip space, if any |
|
1511
|
|
break; |
|
1512
|
|
} |
|
1513
|
10
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
9. handleXmlDeclaration : Replaced operate with second operand → KILLED
10. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemAttrQuote = _inputBuffer.get(_inputPtr++); |
|
1514
|
24
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED
12. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED
13. handleXmlDeclaration : negated conditional → KILLED
14. handleXmlDeclaration : negated conditional → KILLED
15. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
18. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
19. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
20. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
21. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
22. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
23. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
24. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_elemAttrQuote != BYTE_QUOT && _elemAttrQuote != BYTE_APOS) { |
|
1515
|
7
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
7. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(_elemAttrQuote), " (expected '\"' or ''' in xml declaration for encoding value)"); |
|
1516
|
|
} |
|
1517
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_ENCODING_VALUE; |
|
1518
|
|
{ |
|
1519
|
1
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] buf = _textBuilder.resetWithEmpty(); |
|
1520
|
20
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
11. handleXmlDeclaration : changed conditional boundary to IFLT → SURVIVED
12. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
16. handleXmlDeclaration : negated conditional → KILLED
17. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
19. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
20. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
|
if (_inputPtr >= _inputEnd || !parseXmlDeclAttr(buf, 0)) { |
|
1521
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_ENCODING_VALUE; |
|
1522
|
|
break; |
|
1523
|
|
} |
|
1524
|
|
} |
|
1525
|
1
1. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlEncoding → NO_COVERAGE
|
verifyAndSetXmlEncoding(); |
|
1526
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
_state = STATE_XMLDECL_AFTER_ENCODING_VALUE; |
|
1527
|
|
break; |
|
1528
|
|
|
|
1529
|
|
case STATE_XMLDECL_ENCODING_VALUE: // parsing encoding value |
|
1530
|
8
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
8. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!parseXmlDeclAttr(_textBuilder.getBufferWithoutReset(), _textBuilder.getCurrentLength())) { |
|
1531
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_ENCODING_VALUE; |
|
1532
|
|
break; |
|
1533
|
|
} |
|
1534
|
1
1. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlEncoding → KILLED
|
verifyAndSetXmlEncoding(); |
|
1535
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_ENCODING_VALUE; |
|
1536
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
6. handleXmlDeclaration : changed conditional boundary → KILLED
7. handleXmlDeclaration : negated conditional → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1537
|
|
break; |
|
1538
|
|
} |
|
1539
|
|
// fall through |
|
1540
|
|
|
|
1541
|
|
case STATE_XMLDECL_AFTER_ENCODING_VALUE: // encoding+value gotten; need space or '?' |
|
1542
|
|
{ |
|
1543
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleXmlDeclaration : Replaced operate with second operand → KILLED
9. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1544
|
11
1. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
6. handleXmlDeclaration : negated conditional → KILLED
7. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
|
if (b == BYTE_QMARK) { |
|
1545
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 20 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
_state = STATE_XMLDECL_ENDQ; |
|
1546
|
|
continue main_loop; |
|
1547
|
|
} |
|
1548
|
44
1. handleXmlDeclaration : negated conditional → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : negated conditional → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handleXmlDeclaration : negated conditional → KILLED
37. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
42. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
43. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
44. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR || b == BYTE_LF || b == BYTE_TAB) { |
|
1549
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 14 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_BEFORE_STANDALONE; |
|
1550
|
|
} else { |
|
1551
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected space after encoding value in xml declaration)"); |
|
1552
|
|
} |
|
1553
|
|
} |
|
1554
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1555
|
|
break; |
|
1556
|
|
} |
|
1557
|
|
// fall through |
|
1558
|
|
|
|
1559
|
|
case STATE_XMLDECL_BEFORE_STANDALONE: // after encoding+value+space; get '?' or 's' |
|
1560
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
2. handleXmlDeclaration : negated conditional → TIMED_OUT
3. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
|
if (!asyncSkipSpace()) { // not enough input |
|
1561
|
|
break; |
|
1562
|
|
} |
|
1563
|
|
{ |
|
1564
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleXmlDeclaration : Replaced operate with second operand → KILLED
9. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1565
|
11
1. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
7. handleXmlDeclaration : negated conditional → KILLED
8. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_QMARK) { |
|
1566
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 20 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_ENDQ; |
|
1567
|
|
continue main_loop; |
|
1568
|
|
} |
|
1569
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : negated conditional → KILLED
|
if ((_tokenName = parseNewName(b)) == null) { // incomplete |
|
1570
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_STANDALONE; |
|
1571
|
|
break; |
|
1572
|
|
} |
|
1573
|
7
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!_tokenName.hasPrefixedName("standalone")) { |
|
1574
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
2. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
reportInputProblem("Unexpected keyword '"+_tokenName.getPrefixedName()+"' in XML declaration: expected 'standalone'"); |
|
1575
|
|
} |
|
1576
|
|
} |
|
1577
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_STANDALONE; |
|
1578
|
|
continue main_loop; |
|
1579
|
|
|
|
1580
|
|
case STATE_XMLDECL_STANDALONE: // parsing "standalone" |
|
1581
|
2
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : negated conditional → KILLED
|
if ((_tokenName = parsePName()) == null) { // incomplete |
|
1582
|
|
break; |
|
1583
|
|
} |
|
1584
|
7
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!_tokenName.hasPrefixedName("standalone")) { |
|
1585
|
1
1. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
reportInputProblem("Unexpected keyword 'encoding' in XML declaration: expected 'standalone'"); |
|
1586
|
|
} |
|
1587
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_STANDALONE; |
|
1588
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1589
|
|
break; |
|
1590
|
|
} |
|
1591
|
|
// fall through |
|
1592
|
|
case STATE_XMLDECL_AFTER_STANDALONE: // got "standalone"; must get ' ' or '=' |
|
1593
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
3. handleXmlDeclaration : negated conditional → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
|
if (!asyncSkipSpace()) { // not enough input |
|
1594
|
|
break; |
|
1595
|
|
} |
|
1596
|
|
{ |
|
1597
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleXmlDeclaration : Replaced operate with second operand → KILLED
9. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1598
|
11
1. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED
6. handleXmlDeclaration : negated conditional → KILLED
7. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
10. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
11. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_EQ) { |
|
1599
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected '=' after 'standalone' in xml declaration)"); |
|
1600
|
|
} |
|
1601
|
|
} |
|
1602
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 17 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_STANDALONE_EQ; |
|
1603
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1604
|
|
break; |
|
1605
|
|
} |
|
1606
|
|
// fall through |
|
1607
|
|
case STATE_XMLDECL_STANDALONE_EQ: // "standalone=" |
|
1608
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGE → SURVIVED
2. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
3. handleXmlDeclaration : negated conditional → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
|
if (!asyncSkipSpace()) { // skip space, if any |
|
1609
|
|
break; |
|
1610
|
|
} |
|
1611
|
10
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
9. handleXmlDeclaration : Replaced operate with second operand → KILLED
10. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemAttrQuote = _inputBuffer.get(_inputPtr++); |
|
1612
|
24
1. handleXmlDeclaration : negated conditional → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED
17. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED
18. handleXmlDeclaration : negated conditional → KILLED
19. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
22. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
23. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
24. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_elemAttrQuote != BYTE_QUOT && _elemAttrQuote != BYTE_APOS) { |
|
1613
|
7
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
7. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(_elemAttrQuote), " (expected '\"' or ''' in xml declaration for standalone value)"); |
|
1614
|
|
} |
|
1615
|
|
{ |
|
1616
|
1
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] buf = _textBuilder.resetWithEmpty(); |
|
1617
|
20
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
11. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
15. handleXmlDeclaration : negated conditional → KILLED
16. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
18. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
19. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
20. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (_inputPtr >= _inputEnd || !parseXmlDeclAttr(buf, 0)) { |
|
1618
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 18 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_STANDALONE_VALUE; |
|
1619
|
|
break; |
|
1620
|
|
} |
|
1621
|
|
} |
|
1622
|
1
1. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlStandalone → KILLED
|
verifyAndSetXmlStandalone(); |
|
1623
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 19 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_STANDALONE_VALUE; |
|
1624
|
|
continue main_loop; |
|
1625
|
|
|
|
1626
|
|
case STATE_XMLDECL_STANDALONE_VALUE: // encoding+value gotten; need space or '?' |
|
1627
|
|
|
|
1628
|
8
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
4. handleXmlDeclaration : negated conditional → KILLED
5. handleXmlDeclaration : changed conditional boundary to IFEQ → KILLED
6. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
7. handleXmlDeclaration : changed conditional boundary to IFLE → KILLED
8. handleXmlDeclaration : changed conditional boundary to IFLT → KILLED
|
if (!parseXmlDeclAttr(_textBuilder.getBufferWithoutReset(), _textBuilder.getCurrentLength())) { |
|
1629
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 18 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_STANDALONE_VALUE; |
|
1630
|
|
break; |
|
1631
|
|
} |
|
1632
|
1
1. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlStandalone → KILLED
|
verifyAndSetXmlStandalone(); |
|
1633
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 19 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_AFTER_STANDALONE_VALUE; |
|
1634
|
9
1. handleXmlDeclaration : changed conditional boundary → SURVIVED
2. handleXmlDeclaration : negated conditional → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1635
|
|
break; |
|
1636
|
|
} |
|
1637
|
|
// fall through |
|
1638
|
|
case STATE_XMLDECL_AFTER_STANDALONE_VALUE: // encoding+value gotten; need space or '?' |
|
1639
|
6
1. handleXmlDeclaration : changed conditional boundary to IFGT → SURVIVED
2. handleXmlDeclaration : negated conditional → TIMED_OUT
3. handleXmlDeclaration : changed conditional boundary to IFEQ → TIMED_OUT
4. handleXmlDeclaration : changed conditional boundary to IFLE → TIMED_OUT
5. handleXmlDeclaration : changed conditional boundary to IFLT → TIMED_OUT
6. handleXmlDeclaration : changed conditional boundary to IFGE → KILLED
|
if (!asyncSkipSpace()) { // skip space, if any |
|
1640
|
|
break; |
|
1641
|
|
} |
|
1642
|
20
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
12. handleXmlDeclaration : Replaced operate with second operand → KILLED
13. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
14. handleXmlDeclaration : negated conditional → KILLED
15. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
18. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
19. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
20. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputBuffer.get(_inputPtr++) != BYTE_QMARK) { |
|
1643
|
14
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. handleXmlDeclaration : Replaced operate with second operand → NO_COVERAGE
10. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
11. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
13. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
14. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(_inputBuffer.get(_inputPtr-1)), " (expected '?>' to end xml declaration)"); |
|
1644
|
|
} |
|
1645
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 20 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_XMLDECL_ENDQ; |
|
1646
|
9
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → SURVIVED
6. handleXmlDeclaration : changed conditional boundary → KILLED
7. handleXmlDeclaration : negated conditional → KILLED
8. handleXmlDeclaration : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1647
|
|
break; |
|
1648
|
|
} |
|
1649
|
|
// fall through |
|
1650
|
|
|
|
1651
|
|
case STATE_XMLDECL_ENDQ: |
|
1652
|
|
// Better clear up decoded name, to avoid later problems (would be taken as PI) |
|
1653
|
1
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
_tokenName = null; |
|
1654
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1655
|
6
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
1656
|
20
1. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleXmlDeclaration : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
12. handleXmlDeclaration : Replaced operate with second operand → KILLED
13. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
14. handleXmlDeclaration : negated conditional → KILLED
15. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
18. handleXmlDeclaration : changed conditional boundary to IF_ICMPGT → KILLED
19. handleXmlDeclaration : changed conditional boundary to IF_ICMPLT → KILLED
20. handleXmlDeclaration : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputBuffer.get(_inputPtr++) != BYTE_GT) { |
|
1657
|
14
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. handleXmlDeclaration : Replaced operate with second operand → NO_COVERAGE
10. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
11. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
13. handleXmlDeclaration : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
14. handleXmlDeclaration : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(_inputBuffer.get(_inputPtr-1)), " (expected '>' to end xml declaration)"); |
|
1658
|
|
} |
|
1659
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleXmlDeclaration : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return START_DOCUMENT; |
|
1660
|
|
|
|
1661
|
|
default: |
|
1662
|
|
throwInternal(); |
|
1663
|
|
} |
|
1664
|
|
} |
|
1665
|
|
|
|
1666
|
6
1. handleXmlDeclaration : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleXmlDeclaration : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleXmlDeclaration : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleXmlDeclaration : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleXmlDeclaration : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleXmlDeclaration : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
1667
|
|
} |
|
1668
|
|
|
|
1669
|
|
private int handleDTD() throws XMLStreamException |
|
1670
|
|
{ |
|
1671
|
|
// First: left-over CRs? |
|
1672
|
12
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleDTD : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
9. handleDTD : negated conditional → KILLED
10. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. handleDTD : changed conditional boundary to IF_ICMPEQ → KILLED
12. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_CR) { |
|
1673
|
6
1. handleDTD : negated conditional → NO_COVERAGE
2. handleDTD : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleDTD : changed conditional boundary to IFGE → NO_COVERAGE
4. handleDTD : changed conditional boundary to IFGT → NO_COVERAGE
5. handleDTD : changed conditional boundary to IFLE → NO_COVERAGE
6. handleDTD : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handlePartialCR()) { |
|
1674
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
1675
|
|
} |
|
1676
|
|
} |
|
1677
|
12
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
6. handleDTD : negated conditional → KILLED
7. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleDTD : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleDTD : changed conditional boundary to IF_ICMPGE → KILLED
10. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
11. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
12. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_state == STATE_DTD_INT_SUBSET) { |
|
1678
|
11
1. handleDTD : changed conditional boundary to IFLE → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDTD : negated conditional → KILLED
7. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleDTD : changed conditional boundary to IFGE → KILLED
9. handleDTD : changed conditional boundary to IFGT → KILLED
10. handleDTD : changed conditional boundary to IFLT → KILLED
11. handleDTD : changed conditional boundary to IFNE → KILLED
|
if (handleDTDInternalSubset(false)) { // got it! |
|
1679
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 50 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_EXPECT_CLOSING_GT; |
|
1680
|
|
} else { |
|
1681
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
1682
|
|
} |
|
1683
|
|
} |
|
1684
|
|
|
|
1685
|
|
main_loop: |
|
1686
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleDTD : changed conditional boundary → TIMED_OUT
5. handleDTD : changed conditional boundary to IF_ICMPGT → TIMED_OUT
6. handleDTD : changed conditional boundary to IF_ICMPGT → TIMED_OUT
7. handleDTD : negated conditional → KILLED
8. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
9. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
while (_inputPtr < _inputEnd) { |
|
1687
|
1
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
switch (_state) { |
|
1688
|
|
case STATE_DEFAULT: // seen 'D' |
|
1689
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 68 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_tokenName = parseNewName(BYTE_D); |
|
1690
|
2
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleDTD : negated conditional → KILLED
|
if (_tokenName == null) { |
|
1691
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_DOCTYPE; |
|
1692
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
1693
|
|
} |
|
1694
|
7
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleDTD : changed conditional boundary to IFGE → SURVIVED
3. handleDTD : changed conditional boundary to IFGT → SURVIVED
4. handleDTD : negated conditional → KILLED
5. handleDTD : changed conditional boundary to IFEQ → KILLED
6. handleDTD : changed conditional boundary to IFLE → KILLED
7. handleDTD : changed conditional boundary to IFLT → KILLED
|
if (!"DOCTYPE".equals(_tokenName.getPrefixedName())) { |
|
1695
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologProblem → NO_COVERAGE
|
reportPrologProblem(true, "expected 'DOCTYPE'"); |
|
1696
|
|
} |
|
1697
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_DOCTYPE; |
|
1698
|
|
continue main_loop; |
|
1699
|
|
case STATE_DTD_DOCTYPE: |
|
1700
|
1
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
_tokenName = parsePName(); |
|
1701
|
2
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleDTD : negated conditional → KILLED
|
if (_tokenName == null) { |
|
1702
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_DOCTYPE; |
|
1703
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
1704
|
|
} |
|
1705
|
7
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleDTD : changed conditional boundary to IFGE → SURVIVED
3. handleDTD : changed conditional boundary to IFGT → SURVIVED
4. handleDTD : negated conditional → KILLED
5. handleDTD : changed conditional boundary to IFEQ → KILLED
6. handleDTD : changed conditional boundary to IFLE → KILLED
7. handleDTD : changed conditional boundary to IFLT → KILLED
|
if (!"DOCTYPE".equals(_tokenName.getPrefixedName())) { |
|
1706
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologProblem → NO_COVERAGE
|
reportPrologProblem(true, "expected 'DOCTYPE'"); |
|
1707
|
|
} |
|
1708
|
9
1. handleDTD : changed conditional boundary → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleDTD : negated conditional → TIMED_OUT
6. handleDTD : changed conditional boundary to IF_ICMPEQ → TIMED_OUT
7. handleDTD : changed conditional boundary to IF_ICMPGE → TIMED_OUT
8. handleDTD : changed conditional boundary to IF_ICMPGT → TIMED_OUT
9. handleDTD : changed conditional boundary to IF_ICMPGT → TIMED_OUT
|
if (_inputPtr >= _inputEnd) { |
|
1709
|
|
break; |
|
1710
|
|
} |
|
1711
|
|
// fall through |
|
1712
|
|
case STATE_DTD_AFTER_DOCTYPE: |
|
1713
|
|
{ |
|
1714
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : Replaced operate with second operand → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1715
|
44
1. handleDTD : negated conditional → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : negated conditional → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handleDTD : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handleDTD : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handleDTD : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handleDTD : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handleDTD : negated conditional → KILLED
37. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
42. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
43. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
44. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR || b == BYTE_LF || b == BYTE_TAB) { |
|
1716
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_BEFORE_ROOT_NAME; |
|
1717
|
|
} else { |
|
1718
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected space after 'DOCTYPE')"); |
|
1719
|
|
} |
|
1720
|
|
} |
|
1721
|
|
// fall through (ok to skip bounds checks, async-skip does it) |
|
1722
|
|
case STATE_DTD_BEFORE_ROOT_NAME: |
|
1723
|
6
1. handleDTD : changed conditional boundary to IFGT → SURVIVED
2. handleDTD : changed conditional boundary to IFLT → TIMED_OUT
3. handleDTD : negated conditional → KILLED
4. handleDTD : changed conditional boundary to IFEQ → KILLED
5. handleDTD : changed conditional boundary to IFGE → KILLED
6. handleDTD : changed conditional boundary to IFLE → KILLED
|
if (!asyncSkipSpace()) { // not enough input |
|
1724
|
|
break; |
|
1725
|
|
} |
|
1726
|
11
1. handleDTD : negated conditional → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
5. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
6. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. handleDTD : Replaced operate with second operand → KILLED
11. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if ((_tokenName = parseNewName(_inputBuffer.get(_inputPtr++))) == null) { // incomplete |
|
1727
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_ROOT_NAME; |
|
1728
|
|
break; |
|
1729
|
|
} |
|
1730
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_ROOT_NAME; |
|
1731
|
|
continue main_loop; |
|
1732
|
|
case STATE_DTD_ROOT_NAME: |
|
1733
|
2
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handleDTD : negated conditional → KILLED
|
if ((_tokenName = parsePName()) == null) { // incomplete |
|
1734
|
|
break; |
|
1735
|
|
} |
|
1736
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_ROOT_NAME; |
|
1737
|
9
1. handleDTD : changed conditional boundary → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1738
|
|
break; |
|
1739
|
|
} |
|
1740
|
|
// fall through |
|
1741
|
|
case STATE_DTD_AFTER_ROOT_NAME: |
|
1742
|
|
{ |
|
1743
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : Replaced operate with second operand → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1744
|
11
1. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleDTD : negated conditional → KILLED
7. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleDTD : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleDTD : changed conditional boundary to IF_ICMPGE → KILLED
10. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
11. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
|
if (b == BYTE_GT) { |
|
1745
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1746
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
1747
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return DTD; |
|
1748
|
|
} |
|
1749
|
44
1. handleDTD : negated conditional → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : negated conditional → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handleDTD : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handleDTD : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handleDTD : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handleDTD : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handleDTD : negated conditional → KILLED
37. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
42. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
43. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
44. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR || b == BYTE_LF || b == BYTE_TAB) { |
|
1750
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_BEFORE_IDS; |
|
1751
|
|
} else { |
|
1752
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected space after root name in DOCTYPE declaration)"); |
|
1753
|
|
} |
|
1754
|
|
} |
|
1755
|
|
// fall through (ok to skip bounds checks, async-skip does it) |
|
1756
|
|
case STATE_DTD_BEFORE_IDS: |
|
1757
|
6
1. handleDTD : changed conditional boundary to IFGT → SURVIVED
2. handleDTD : changed conditional boundary to IFLT → TIMED_OUT
3. handleDTD : negated conditional → KILLED
4. handleDTD : changed conditional boundary to IFEQ → KILLED
5. handleDTD : changed conditional boundary to IFGE → KILLED
6. handleDTD : changed conditional boundary to IFLE → KILLED
|
if (!asyncSkipSpace()) { // not enough input |
|
1758
|
|
break; |
|
1759
|
|
} |
|
1760
|
|
{ |
|
1761
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : Replaced operate with second operand → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1762
|
11
1. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
8. handleDTD : negated conditional → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleDTD : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_GT) { |
|
1763
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
_state = STATE_DEFAULT; |
|
1764
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
_nextEvent = EVENT_INCOMPLETE; |
|
1765
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 11 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return DTD; |
|
1766
|
|
} |
|
1767
|
|
PName name; |
|
1768
|
1
1. handleDTD : negated conditional → KILLED
|
if ((name = parseNewName(b)) == null) { |
|
1769
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_PUBLIC_OR_SYSTEM; |
|
1770
|
|
break; |
|
1771
|
|
} |
|
1772
|
|
String str = name.getPrefixedName(); |
|
1773
|
6
1. handleDTD : changed conditional boundary to IFLE → SURVIVED
2. handleDTD : negated conditional → KILLED
3. handleDTD : changed conditional boundary to IFGE → KILLED
4. handleDTD : changed conditional boundary to IFGT → KILLED
5. handleDTD : changed conditional boundary to IFLT → KILLED
6. handleDTD : changed conditional boundary to IFNE → KILLED
|
if ("PUBLIC".equals(str)) { |
|
1774
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_PUBLIC; |
|
1775
|
6
1. handleDTD : changed conditional boundary to IFLE → SURVIVED
2. handleDTD : changed conditional boundary to IFLT → SURVIVED
3. handleDTD : negated conditional → KILLED
4. handleDTD : changed conditional boundary to IFGE → KILLED
5. handleDTD : changed conditional boundary to IFGT → KILLED
6. handleDTD : changed conditional boundary to IFNE → KILLED
|
} else if ("SYSTEM".equals(str)) { |
|
1776
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_SYSTEM; |
|
1777
|
|
} else { |
|
1778
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologProblem → NO_COVERAGE
|
reportPrologProblem(true, "unexpected token '"+str+"': expected either PUBLIC or SYSTEM"); |
|
1779
|
|
} |
|
1780
|
|
} |
|
1781
|
|
continue main_loop; |
|
1782
|
|
|
|
1783
|
|
case STATE_DTD_PUBLIC_OR_SYSTEM: |
|
1784
|
|
{ |
|
1785
|
|
PName name; |
|
1786
|
1
1. handleDTD : negated conditional → KILLED
|
if ((name = parsePName()) == null) { |
|
1787
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_PUBLIC_OR_SYSTEM; |
|
1788
|
|
break; |
|
1789
|
|
} |
|
1790
|
|
String str = name.getPrefixedName(); |
|
1791
|
6
1. handleDTD : changed conditional boundary to IFLE → SURVIVED
2. handleDTD : negated conditional → KILLED
3. handleDTD : changed conditional boundary to IFGE → KILLED
4. handleDTD : changed conditional boundary to IFGT → KILLED
5. handleDTD : changed conditional boundary to IFLT → KILLED
6. handleDTD : changed conditional boundary to IFNE → KILLED
|
if ("PUBLIC".equals(str)) { |
|
1792
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_PUBLIC; |
|
1793
|
6
1. handleDTD : changed conditional boundary to IFLE → SURVIVED
2. handleDTD : changed conditional boundary to IFLT → SURVIVED
3. handleDTD : negated conditional → KILLED
4. handleDTD : changed conditional boundary to IFGE → KILLED
5. handleDTD : changed conditional boundary to IFGT → KILLED
6. handleDTD : changed conditional boundary to IFNE → KILLED
|
} else if ("SYSTEM".equals(str)) { |
|
1794
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_SYSTEM; |
|
1795
|
|
} else { |
|
1796
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologProblem → NO_COVERAGE
|
reportPrologProblem(true, "unexpected token '"+str+"': expected either PUBLIC or SYSTEM"); |
|
1797
|
|
} |
|
1798
|
|
} |
|
1799
|
|
continue main_loop; |
|
1800
|
|
|
|
1801
|
|
case STATE_DTD_AFTER_PUBLIC: |
|
1802
|
|
{ |
|
1803
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : Replaced operate with second operand → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1804
|
44
1. handleDTD : negated conditional → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : negated conditional → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handleDTD : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handleDTD : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handleDTD : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handleDTD : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handleDTD : negated conditional → KILLED
37. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
42. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
43. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
44. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR || b == BYTE_LF || b == BYTE_TAB) { |
|
1805
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_BEFORE_PUBLIC_ID; |
|
1806
|
|
} else { |
|
1807
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected space after PUBLIC keyword)"); |
|
1808
|
|
} |
|
1809
|
|
} |
|
1810
|
|
continue main_loop; |
|
1811
|
|
|
|
1812
|
|
case STATE_DTD_AFTER_SYSTEM: |
|
1813
|
|
{ |
|
1814
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : Replaced operate with second operand → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1815
|
44
1. handleDTD : negated conditional → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : negated conditional → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handleDTD : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handleDTD : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handleDTD : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handleDTD : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handleDTD : negated conditional → KILLED
37. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
42. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
43. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
44. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR || b == BYTE_LF || b == BYTE_TAB) { |
|
1816
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_BEFORE_SYSTEM_ID; |
|
1817
|
|
} else { |
|
1818
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected space after SYSTEM keyword)"); |
|
1819
|
|
} |
|
1820
|
|
} |
|
1821
|
|
continue main_loop; |
|
1822
|
|
|
|
1823
|
|
case STATE_DTD_BEFORE_PUBLIC_ID: |
|
1824
|
6
1. handleDTD : changed conditional boundary to IFGE → SURVIVED
2. handleDTD : changed conditional boundary to IFGT → SURVIVED
3. handleDTD : negated conditional → TIMED_OUT
4. handleDTD : changed conditional boundary to IFEQ → TIMED_OUT
5. handleDTD : changed conditional boundary to IFLE → TIMED_OUT
6. handleDTD : changed conditional boundary to IFLT → TIMED_OUT
|
if (!asyncSkipSpace()) { |
|
1825
|
|
break; |
|
1826
|
|
} |
|
1827
|
10
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
5. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
9. handleDTD : Replaced operate with second operand → KILLED
10. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemAttrQuote = _inputBuffer.get(_inputPtr++); |
|
1828
|
24
1. handleDTD : negated conditional → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. handleDTD : Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED
17. handleDTD : Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED
18. handleDTD : negated conditional → KILLED
19. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
22. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
23. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
24. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_elemAttrQuote != BYTE_QUOT && _elemAttrQuote != BYTE_APOS) { |
|
1829
|
7
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
7. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(_elemAttrQuote), " (expected '\"' or ''' for PUBLIC ID)"); |
|
1830
|
|
} |
|
1831
|
|
{ |
|
1832
|
1
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] buf = _textBuilder.resetWithEmpty(); |
|
1833
|
25
1. handleDTD : changed conditional boundary → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleDTD : changed conditional boundary to IFGT → SURVIVED
11. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
15. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
18. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
19. handleDTD : negated conditional → KILLED
20. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
22. handleDTD : changed conditional boundary to IFEQ → KILLED
23. handleDTD : changed conditional boundary to IFGE → KILLED
24. handleDTD : changed conditional boundary to IFLE → KILLED
25. handleDTD : changed conditional boundary to IFLT → KILLED
|
if (_inputPtr >= _inputEnd || !parseDtdId(buf, 0, false)) { |
|
1834
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_PUBLIC_ID; |
|
1835
|
|
break; |
|
1836
|
|
} |
|
1837
|
|
} |
|
1838
|
1
1. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetPublicId → KILLED
|
verifyAndSetPublicId(); |
|
1839
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_PUBLIC_ID; |
|
1840
|
|
continue main_loop; |
|
1841
|
|
|
|
1842
|
|
case STATE_DTD_PUBLIC_ID: |
|
1843
|
13
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
3. handleDTD : changed conditional boundary to IFGT → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
8. handleDTD : negated conditional → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleDTD : changed conditional boundary to IFEQ → KILLED
11. handleDTD : changed conditional boundary to IFGE → KILLED
12. handleDTD : changed conditional boundary to IFLE → KILLED
13. handleDTD : changed conditional boundary to IFLT → KILLED
|
if (!parseDtdId(_textBuilder.getBufferWithoutReset(), _textBuilder.getCurrentLength(), false)) { |
|
1844
|
|
break; |
|
1845
|
|
} |
|
1846
|
1
1. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetPublicId → KILLED
|
verifyAndSetPublicId(); |
|
1847
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_PUBLIC_ID; |
|
1848
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
6. handleDTD : changed conditional boundary → KILLED
7. handleDTD : negated conditional → KILLED
8. handleDTD : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleDTD : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
1849
|
|
break; |
|
1850
|
|
} |
|
1851
|
|
// fall through |
|
1852
|
|
case STATE_DTD_AFTER_PUBLIC_ID: |
|
1853
|
|
{ |
|
1854
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : Replaced operate with second operand → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1855
|
44
1. handleDTD : negated conditional → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : negated conditional → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handleDTD : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handleDTD : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handleDTD : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handleDTD : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handleDTD : negated conditional → KILLED
37. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
42. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
43. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
44. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR || b == BYTE_LF || b == BYTE_TAB) { |
|
1856
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_BEFORE_SYSTEM_ID; |
|
1857
|
|
} else { |
|
1858
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(b), " (expected space after PUBLIC ID)"); |
|
1859
|
|
} |
|
1860
|
|
} |
|
1861
|
|
// fall through (ok to skip bounds checks, async-skip does it) |
|
1862
|
|
|
|
1863
|
|
case STATE_DTD_BEFORE_SYSTEM_ID: |
|
1864
|
6
1. handleDTD : changed conditional boundary to IFGT → SURVIVED
2. handleDTD : changed conditional boundary to IFLT → TIMED_OUT
3. handleDTD : negated conditional → KILLED
4. handleDTD : changed conditional boundary to IFEQ → KILLED
5. handleDTD : changed conditional boundary to IFGE → KILLED
6. handleDTD : changed conditional boundary to IFLE → KILLED
|
if (!asyncSkipSpace()) { |
|
1865
|
|
break; |
|
1866
|
|
} |
|
1867
|
10
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
5. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
9. handleDTD : Replaced operate with second operand → KILLED
10. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemAttrQuote = _inputBuffer.get(_inputPtr++); |
|
1868
|
24
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
3. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleDTD : Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED
12. handleDTD : Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED
13. handleDTD : negated conditional → KILLED
14. handleDTD : negated conditional → KILLED
15. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
18. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
19. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
20. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
21. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
22. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
23. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
24. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_elemAttrQuote != BYTE_QUOT && _elemAttrQuote != BYTE_APOS) { |
|
1869
|
7
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
7. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(_elemAttrQuote), " (expected '\"' or ''' for SYSTEM ID)"); |
|
1870
|
|
} |
|
1871
|
|
{ |
|
1872
|
1
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] buf = _textBuilder.resetWithEmpty(); |
|
1873
|
25
1. handleDTD : changed conditional boundary → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleDTD : changed conditional boundary to IFGT → SURVIVED
11. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
15. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
18. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
19. handleDTD : negated conditional → KILLED
20. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
22. handleDTD : changed conditional boundary to IFEQ → KILLED
23. handleDTD : changed conditional boundary to IFGE → KILLED
24. handleDTD : changed conditional boundary to IFLE → KILLED
25. handleDTD : changed conditional boundary to IFLT → KILLED
|
if (_inputPtr >= _inputEnd || !parseDtdId(buf, 0, true)) { |
|
1874
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 14 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_SYSTEM_ID; |
|
1875
|
|
break; |
|
1876
|
|
} |
|
1877
|
|
} |
|
1878
|
1
1. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetSystemId → KILLED
|
verifyAndSetSystemId(); |
|
1879
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_SYSTEM_ID; |
|
1880
|
|
continue main_loop; |
|
1881
|
|
|
|
1882
|
|
case STATE_DTD_SYSTEM_ID: |
|
1883
|
13
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
3. handleDTD : changed conditional boundary to IFGT → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : negated conditional → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleDTD : changed conditional boundary to IFEQ → KILLED
11. handleDTD : changed conditional boundary to IFGE → KILLED
12. handleDTD : changed conditional boundary to IFLE → KILLED
13. handleDTD : changed conditional boundary to IFLT → KILLED
|
if (!parseDtdId(_textBuilder.getBufferWithoutReset(), _textBuilder.getCurrentLength(), true)) { |
|
1884
|
|
break; |
|
1885
|
|
} |
|
1886
|
1
1. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetSystemId → KILLED
|
verifyAndSetSystemId(); |
|
1887
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_AFTER_SYSTEM_ID; |
|
1888
|
9
1. handleDTD : changed conditional boundary → SURVIVED
2. handleDTD : negated conditional → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleDTD : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleDTD : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_inputPtr >= _inputEnd) { |
|
1889
|
|
break; |
|
1890
|
|
} |
|
1891
|
|
// fall through |
|
1892
|
|
|
|
1893
|
|
case STATE_DTD_AFTER_SYSTEM_ID: |
|
1894
|
6
1. handleDTD : changed conditional boundary to IFGT → SURVIVED
2. handleDTD : negated conditional → TIMED_OUT
3. handleDTD : changed conditional boundary to IFEQ → TIMED_OUT
4. handleDTD : changed conditional boundary to IFLE → TIMED_OUT
5. handleDTD : changed conditional boundary to IFLT → TIMED_OUT
6. handleDTD : changed conditional boundary to IFGE → KILLED
|
if (!asyncSkipSpace()) { |
|
1895
|
|
break; |
|
1896
|
|
} |
|
1897
|
|
{ |
|
1898
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : Replaced operate with second operand → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1899
|
11
1. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleDTD : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleDTD : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
7. handleDTD : negated conditional → KILLED
8. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleDTD : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleDTD : changed conditional boundary to IF_ICMPGE → KILLED
11. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_GT) { |
|
1900
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1901
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
1902
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return DTD; |
|
1903
|
|
} |
|
1904
|
11
1. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED
6. handleDTD : negated conditional → KILLED
7. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
9. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
10. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
11. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_LBRACKET) { |
|
1905
|
7
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
7. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError(_elemAttrQuote), " (expected either '[' for internal subset, or '>' to end DOCTYPE)"); |
|
1906
|
|
} |
|
1907
|
|
} |
|
1908
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_INT_SUBSET; |
|
1909
|
11
1. handleDTD : changed conditional boundary to IFLE → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleDTD : negated conditional → KILLED
7. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleDTD : changed conditional boundary to IFGE → KILLED
9. handleDTD : changed conditional boundary to IFGT → KILLED
10. handleDTD : changed conditional boundary to IFLT → KILLED
11. handleDTD : changed conditional boundary to IFNE → KILLED
|
if (handleDTDInternalSubset(true)) { |
|
1910
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 50 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DTD_EXPECT_CLOSING_GT; |
|
1911
|
|
} else { |
|
1912
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
1913
|
|
} |
|
1914
|
|
// fall through |
|
1915
|
|
|
|
1916
|
|
case STATE_DTD_EXPECT_CLOSING_GT: |
|
1917
|
6
1. handleDTD : changed conditional boundary to IFGE → SURVIVED
2. handleDTD : changed conditional boundary to IFGT → SURVIVED
3. handleDTD : negated conditional → TIMED_OUT
4. handleDTD : changed conditional boundary to IFEQ → TIMED_OUT
5. handleDTD : changed conditional boundary to IFLE → TIMED_OUT
6. handleDTD : changed conditional boundary to IFLT → TIMED_OUT
|
if (!asyncSkipSpace()) { |
|
1918
|
|
break; |
|
1919
|
|
} |
|
1920
|
|
{ |
|
1921
|
9
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDTD : Replaced operate with second operand → KILLED
9. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
1922
|
11
1. handleDTD : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleDTD : negated conditional → KILLED
7. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
9. handleDTD : changed conditional boundary to IF_ICMPGT → KILLED
10. handleDTD : changed conditional boundary to IF_ICMPLT → KILLED
11. handleDTD : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_GT) { |
|
1923
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDTD : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, b, "expected '>' to end DTD"); |
|
1924
|
|
} |
|
1925
|
|
} |
|
1926
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
1927
|
6
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDTD : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
1928
|
6
1. handleDTD : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDTD : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDTD : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDTD : Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED
5. handleDTD : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return DTD; |
|
1929
|
|
default: |
|
1930
|
|
throwInternal(); |
|
1931
|
|
} |
|
1932
|
|
} |
|
1933
|
2
1. handleDTD : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleDTD : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
1934
|
|
} |
|
1935
|
|
|
|
1936
|
|
private final boolean parseDtdId(char[] outputBuffer, int outputPtr, boolean system) throws XMLStreamException |
|
1937
|
|
{ |
|
1938
|
1
1. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
final int quote = (int) _elemAttrQuote; |
|
1939
|
9
1. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseDtdId : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parseDtdId : negated conditional → TIMED_OUT
5. parseDtdId : changed conditional boundary to IF_ICMPLT → TIMED_OUT
6. parseDtdId : changed conditional boundary to IF_ICMPNE → TIMED_OUT
7. parseDtdId : changed conditional boundary → KILLED
8. parseDtdId : changed conditional boundary to IF_ICMPGT → KILLED
9. parseDtdId : changed conditional boundary to IF_ICMPGT → KILLED
|
while (_inputPtr < _inputEnd) { |
|
1940
|
15
1. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseDtdId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseDtdId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseDtdId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseDtdId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseDtdId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseDtdId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseDtdId : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parseDtdId : Replaced operate with second operand → KILLED
12. parseDtdId : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parseDtdId : Replaced bitwise AND with OR → KILLED
14. parseDtdId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parseDtdId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int ch = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
1941
|
6
1. parseDtdId : negated conditional → KILLED
2. parseDtdId : changed conditional boundary to IF_ICMPEQ → KILLED
3. parseDtdId : changed conditional boundary to IF_ICMPGE → KILLED
4. parseDtdId : changed conditional boundary to IF_ICMPGT → KILLED
5. parseDtdId : changed conditional boundary to IF_ICMPGT → KILLED
6. parseDtdId : changed conditional boundary to IF_ICMPLT → KILLED
|
if (ch == quote) { |
|
1942
|
2
1. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parseDtdId : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outputPtr); |
|
1943
|
6
1. parseDtdId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseDtdId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseDtdId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseDtdId : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. parseDtdId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseDtdId : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
1944
|
|
} |
|
1945
|
12
1. parseDtdId : negated conditional → SURVIVED
2. parseDtdId : changed conditional boundary to IFEQ → SURVIVED
3. parseDtdId : changed conditional boundary to IFGE → SURVIVED
4. parseDtdId : changed conditional boundary to IFGE → SURVIVED
5. parseDtdId : changed conditional boundary to IFGT → SURVIVED
6. parseDtdId : changed conditional boundary to IFGT → SURVIVED
7. parseDtdId : changed conditional boundary to IFLE → SURVIVED
8. parseDtdId : changed conditional boundary to IFLT → SURVIVED
9. parseDtdId : negated conditional → KILLED
10. parseDtdId : changed conditional boundary to IFEQ → KILLED
11. parseDtdId : changed conditional boundary to IFLE → KILLED
12. parseDtdId : changed conditional boundary to IFLT → KILLED
|
if (!system && !validPublicIdChar(ch)) { |
|
1946
|
12
1. parseDtdId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseDtdId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseDtdId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseDtdId : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parseDtdId : negated conditional → NO_COVERAGE
6. parseDtdId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parseDtdId : changed conditional boundary to IFGE → NO_COVERAGE
8. parseDtdId : changed conditional boundary to IFGT → NO_COVERAGE
9. parseDtdId : changed conditional boundary to IFLE → NO_COVERAGE
10. parseDtdId : changed conditional boundary to IFLT → NO_COVERAGE
11. parseDtdId : changed conditional boundary to IFNE → NO_COVERAGE
12. parseDtdId : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError((byte) ch), " (not valid in " + (system ? "SYSTEM" : "PUBLIC") + " ID)"); |
|
1947
|
|
} |
|
1948
|
7
1. parseDtdId : changed conditional boundary → SURVIVED
2. parseDtdId : changed conditional boundary to IF_ICMPNE → SURVIVED
3. parseDtdId : negated conditional → KILLED
4. parseDtdId : changed conditional boundary to IF_ICMPEQ → KILLED
5. parseDtdId : changed conditional boundary to IF_ICMPGE → KILLED
6. parseDtdId : changed conditional boundary to IF_ICMPGT → KILLED
7. parseDtdId : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outputPtr >= outputBuffer.length) { |
|
1949
|
1
1. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
1950
|
5
1. parseDtdId : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseDtdId : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseDtdId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseDtdId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseDtdId : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outputPtr = 0; |
|
1951
|
|
} |
|
1952
|
5
1. parseDtdId : Changed increment from 1 to -1 → KILLED
2. parseDtdId : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parseDtdId : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parseDtdId : UOI Mutator: Removed unary increment of local variable → KILLED
5. parseDtdId : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outputPtr++] = (char) ch; |
|
1953
|
|
} |
|
1954
|
2
1. parseDtdId : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parseDtdId : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outputPtr); |
|
1955
|
6
1. parseDtdId : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseDtdId : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseDtdId : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseDtdId : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. parseDtdId : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseDtdId : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
1956
|
|
} |
|
1957
|
|
|
|
1958
|
|
/** |
|
1959
|
|
* Method called to try to parse an XML pseudo-attribute value. This is relatively |
|
1960
|
|
* simple, since we can't have linefeeds or entities; and although there are exact |
|
1961
|
|
* rules for what is allowed, we can do coarse parsing and only later on verify |
|
1962
|
|
* validity (for encoding could do stricter parsing in future?) |
|
1963
|
|
* |
|
1964
|
|
* @return True if we managed to parse the whole pseudo-attribute |
|
1965
|
|
*/ |
|
1966
|
|
private boolean parseXmlDeclAttr(char[] outputBuffer, int outputPtr) throws XMLStreamException |
|
1967
|
|
{ |
|
1968
|
1
1. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
final int quote = (int) _elemAttrQuote; |
|
1969
|
9
1. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseXmlDeclAttr : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parseXmlDeclAttr : negated conditional → TIMED_OUT
5. parseXmlDeclAttr : changed conditional boundary to IF_ICMPLT → TIMED_OUT
6. parseXmlDeclAttr : changed conditional boundary to IF_ICMPNE → TIMED_OUT
7. parseXmlDeclAttr : changed conditional boundary → KILLED
8. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → KILLED
9. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → KILLED
|
while (_inputPtr < _inputEnd) { |
|
1970
|
15
1. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseXmlDeclAttr : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseXmlDeclAttr : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseXmlDeclAttr : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseXmlDeclAttr : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseXmlDeclAttr : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseXmlDeclAttr : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseXmlDeclAttr : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parseXmlDeclAttr : Replaced operate with second operand → KILLED
12. parseXmlDeclAttr : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parseXmlDeclAttr : Replaced bitwise AND with OR → KILLED
14. parseXmlDeclAttr : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parseXmlDeclAttr : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int ch = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
1971
|
6
1. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → SURVIVED
2. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseXmlDeclAttr : negated conditional → KILLED
4. parseXmlDeclAttr : changed conditional boundary to IF_ICMPEQ → KILLED
5. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGE → KILLED
6. parseXmlDeclAttr : changed conditional boundary to IF_ICMPLT → KILLED
|
if (ch == quote) { |
|
1972
|
2
1. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parseXmlDeclAttr : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outputPtr); |
|
1973
|
6
1. parseXmlDeclAttr : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseXmlDeclAttr : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseXmlDeclAttr : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseXmlDeclAttr : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. parseXmlDeclAttr : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseXmlDeclAttr : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
1974
|
|
} |
|
1975
|
|
// this is not exact check; but does work for all legal (valid) characters: |
|
1976
|
26
1. parseXmlDeclAttr : changed conditional boundary → SURVIVED
2. parseXmlDeclAttr : changed conditional boundary → SURVIVED
3. parseXmlDeclAttr : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parseXmlDeclAttr : changed conditional boundary to IF_ICMPLT → SURVIVED
5. parseXmlDeclAttr : changed conditional boundary to IF_ICMPLT → SURVIVED
6. parseXmlDeclAttr : changed conditional boundary to IF_ICMPNE → SURVIVED
7. parseXmlDeclAttr : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. parseXmlDeclAttr : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. parseXmlDeclAttr : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. parseXmlDeclAttr : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. parseXmlDeclAttr : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. parseXmlDeclAttr : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. parseXmlDeclAttr : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
14. parseXmlDeclAttr : Bug fixed: CRCR replace with One, Substituted 122 with 1 → KILLED
15. parseXmlDeclAttr : negated conditional → KILLED
16. parseXmlDeclAttr : negated conditional → KILLED
17. parseXmlDeclAttr : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. parseXmlDeclAttr : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. parseXmlDeclAttr : changed conditional boundary to IF_ICMPEQ → KILLED
20. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGE → KILLED
21. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGE → KILLED
22. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → KILLED
23. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → KILLED
24. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → KILLED
25. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → KILLED
26. parseXmlDeclAttr : changed conditional boundary to IF_ICMPNE → KILLED
|
if (ch <= INT_SPACE || ch > INT_z) { |
|
1977
|
6
1. parseXmlDeclAttr : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseXmlDeclAttr : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseXmlDeclAttr : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseXmlDeclAttr : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parseXmlDeclAttr : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. parseXmlDeclAttr : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
reportPrologUnexpChar(true, decodeCharForError((byte) ch), " (not valid in XML pseudo-attribute values)"); |
|
1978
|
|
} |
|
1979
|
7
1. parseXmlDeclAttr : changed conditional boundary → SURVIVED
2. parseXmlDeclAttr : changed conditional boundary to IF_ICMPNE → SURVIVED
3. parseXmlDeclAttr : negated conditional → KILLED
4. parseXmlDeclAttr : changed conditional boundary to IF_ICMPEQ → KILLED
5. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGE → KILLED
6. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → KILLED
7. parseXmlDeclAttr : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outputPtr >= outputBuffer.length) { |
|
1980
|
1
1. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
1981
|
5
1. parseXmlDeclAttr : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseXmlDeclAttr : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseXmlDeclAttr : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseXmlDeclAttr : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. parseXmlDeclAttr : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outputPtr = 0; |
|
1982
|
|
} |
|
1983
|
5
1. parseXmlDeclAttr : Changed increment from 1 to -1 → KILLED
2. parseXmlDeclAttr : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. parseXmlDeclAttr : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. parseXmlDeclAttr : UOI Mutator: Removed unary increment of local variable → KILLED
5. parseXmlDeclAttr : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outputPtr++] = (char) ch; |
|
1984
|
|
} |
|
1985
|
2
1. parseXmlDeclAttr : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. parseXmlDeclAttr : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outputPtr); |
|
1986
|
6
1. parseXmlDeclAttr : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseXmlDeclAttr : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseXmlDeclAttr : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseXmlDeclAttr : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. parseXmlDeclAttr : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseXmlDeclAttr : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
1987
|
|
} |
|
1988
|
|
|
|
1989
|
|
/* |
|
1990
|
|
/********************************************************************** |
|
1991
|
|
/* Second-level parsing; character content (in tree) |
|
1992
|
|
/********************************************************************** |
|
1993
|
|
*/ |
|
1994
|
|
|
|
1995
|
|
private int handleCData() throws XMLStreamException |
|
1996
|
|
{ |
|
1997
|
12
1. handleCData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleCData : negated conditional → KILLED
7. handleCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCData : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleCData : changed conditional boundary to IF_ICMPGE → KILLED
10. handleCData : changed conditional boundary to IF_ICMPGT → KILLED
11. handleCData : changed conditional boundary to IF_ICMPGT → KILLED
12. handleCData : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_state == STATE_CDATA_CONTENT) { |
|
1998
|
1
1. handleCData : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return parseCDataContents(); |
|
1999
|
|
} |
|
2000
|
9
1. handleCData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCData : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCData : changed conditional boundary → KILLED
5. handleCData : negated conditional → KILLED
6. handleCData : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCData : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCData : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCData : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2001
|
6
1. handleCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCData : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCData : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2002
|
|
} |
|
2003
|
10
1. handleCData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCData : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCData : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCData : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCData : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCData : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCData : Replaced operate with second operand → KILLED
9. handleCData : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleCData : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleCDataStartMarker(_inputBuffer.get(_inputPtr++)); |
|
2004
|
|
} |
|
2005
|
|
|
|
2006
|
|
private int handleCDataStartMarker(byte b) throws XMLStreamException |
|
2007
|
|
{ |
|
2008
|
1
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
switch (_state) { |
|
2009
|
|
case STATE_DEFAULT: |
|
2010
|
11
1. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 67 with 1 → KILLED
6. handleCDataStartMarker : negated conditional → KILLED
7. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
10. handleCDataStartMarker : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_C) { |
|
2011
|
1
1. handleCDataStartMarker : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
reportTreeUnexpChar(decodeCharForError(b), " (expected 'C' for CDATA)"); |
|
2012
|
|
} |
|
2013
|
6
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_CDATA_C; |
|
2014
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCDataStartMarker : changed conditional boundary → KILLED
5. handleCDataStartMarker : negated conditional → KILLED
6. handleCDataStartMarker : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2015
|
6
1. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCDataStartMarker : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2016
|
|
} |
|
2017
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCDataStartMarker : Replaced operate with second operand → KILLED
9. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2018
|
|
// fall through |
|
2019
|
|
case STATE_CDATA_C: |
|
2020
|
11
1. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 68 with 1 → KILLED
6. handleCDataStartMarker : negated conditional → KILLED
7. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
10. handleCDataStartMarker : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_D) { |
|
2021
|
1
1. handleCDataStartMarker : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
reportTreeUnexpChar(decodeCharForError(b), " (expected 'D' for CDATA)"); |
|
2022
|
|
} |
|
2023
|
6
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_CDATA_CD; |
|
2024
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCDataStartMarker : changed conditional boundary → KILLED
5. handleCDataStartMarker : negated conditional → KILLED
6. handleCDataStartMarker : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2025
|
6
1. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCDataStartMarker : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2026
|
|
} |
|
2027
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCDataStartMarker : Replaced operate with second operand → KILLED
9. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2028
|
|
// fall through |
|
2029
|
|
case STATE_CDATA_CD: |
|
2030
|
11
1. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
6. handleCDataStartMarker : negated conditional → KILLED
7. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
10. handleCDataStartMarker : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_A) { |
|
2031
|
1
1. handleCDataStartMarker : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
reportTreeUnexpChar(decodeCharForError(b), " (expected 'A' for CDATA)"); |
|
2032
|
|
} |
|
2033
|
6
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_CDATA_CDA; |
|
2034
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCDataStartMarker : changed conditional boundary → KILLED
5. handleCDataStartMarker : negated conditional → KILLED
6. handleCDataStartMarker : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2035
|
6
1. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCDataStartMarker : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2036
|
|
} |
|
2037
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCDataStartMarker : Replaced operate with second operand → KILLED
9. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2038
|
|
// fall through |
|
2039
|
|
case STATE_CDATA_CDA: |
|
2040
|
11
1. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 84 with 1 → KILLED
6. handleCDataStartMarker : negated conditional → KILLED
7. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
10. handleCDataStartMarker : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_T) { |
|
2041
|
1
1. handleCDataStartMarker : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
reportTreeUnexpChar(decodeCharForError(b), " (expected 'T' for CDATA)"); |
|
2042
|
|
} |
|
2043
|
6
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_CDATA_CDAT; |
|
2044
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCDataStartMarker : changed conditional boundary → KILLED
5. handleCDataStartMarker : negated conditional → KILLED
6. handleCDataStartMarker : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2045
|
6
1. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCDataStartMarker : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2046
|
|
} |
|
2047
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCDataStartMarker : Replaced operate with second operand → KILLED
9. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2048
|
|
// fall through |
|
2049
|
|
case STATE_CDATA_CDAT: |
|
2050
|
11
1. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
6. handleCDataStartMarker : negated conditional → KILLED
7. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
10. handleCDataStartMarker : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_A) { |
|
2051
|
1
1. handleCDataStartMarker : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
reportTreeUnexpChar(decodeCharForError(b), " (expected 'A' for CDATA)"); |
|
2052
|
|
} |
|
2053
|
6
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
6. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_CDATA_CDATA; |
|
2054
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleCDataStartMarker : changed conditional boundary → KILLED
5. handleCDataStartMarker : negated conditional → KILLED
6. handleCDataStartMarker : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2055
|
6
1. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCDataStartMarker : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2056
|
|
} |
|
2057
|
9
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleCDataStartMarker : Replaced operate with second operand → KILLED
9. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2058
|
|
// fall through |
|
2059
|
|
case STATE_CDATA_CDATA: |
|
2060
|
11
1. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED
6. handleCDataStartMarker : negated conditional → KILLED
7. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
10. handleCDataStartMarker : changed conditional boundary to IF_ICMPLT → KILLED
11. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_LBRACKET) { |
|
2061
|
1
1. handleCDataStartMarker : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
reportTreeUnexpChar(decodeCharForError(b), " (expected '[' for CDATA)"); |
|
2062
|
|
} |
|
2063
|
1
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
_textBuilder.resetWithEmpty(); |
|
2064
|
6
1. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_CDATA_CONTENT; |
|
2065
|
9
1. handleCDataStartMarker : changed conditional boundary → SURVIVED
2. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleCDataStartMarker : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleCDataStartMarker : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleCDataStartMarker : negated conditional → KILLED
6. handleCDataStartMarker : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleCDataStartMarker : changed conditional boundary to IF_ICMPGE → KILLED
8. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
9. handleCDataStartMarker : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2066
|
6
1. handleCDataStartMarker : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleCDataStartMarker : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleCDataStartMarker : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleCDataStartMarker : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleCDataStartMarker : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleCDataStartMarker : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2067
|
|
} |
|
2068
|
1
1. handleCDataStartMarker : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return parseCDataContents(); |
|
2069
|
|
} |
|
2070
|
1
1. handleCDataStartMarker : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return throwInternal(); |
|
2071
|
|
} |
|
2072
|
|
|
|
2073
|
|
/* |
|
2074
|
|
/********************************************************************** |
|
2075
|
|
/* Second-level parsing; other (PI, Comment) |
|
2076
|
|
/********************************************************************** |
|
2077
|
|
*/ |
|
2078
|
|
|
|
2079
|
|
private int handlePI() throws XMLStreamException |
|
2080
|
|
{ |
|
2081
|
|
// Most common case first: |
|
2082
|
12
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePI : changed conditional boundary to IF_ICMPLT → SURVIVED
3. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handlePI : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
7. handlePI : negated conditional → KILLED
8. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handlePI : changed conditional boundary to IF_ICMPEQ → KILLED
10. handlePI : changed conditional boundary to IF_ICMPGE → KILLED
11. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
12. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_state == STATE_PI_IN_DATA) { |
|
2083
|
1
1. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return parsePIData(); |
|
2084
|
|
} |
|
2085
|
|
|
|
2086
|
|
main_loop: |
|
2087
|
|
while (true) { |
|
2088
|
9
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handlePI : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handlePI : changed conditional boundary → KILLED
5. handlePI : negated conditional → KILLED
6. handlePI : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePI : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2089
|
6
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePI : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2090
|
|
} |
|
2091
|
1
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
switch (_state) { |
|
2092
|
|
case STATE_DEFAULT: |
|
2093
|
10
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
5. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handlePI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
9. handlePI : Replaced operate with second operand → KILLED
10. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_tokenName = parseNewName(_inputBuffer.get(_inputPtr++)); |
|
2094
|
2
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handlePI : negated conditional → KILLED
|
if (_tokenName == null) { |
|
2095
|
6
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_IN_TARGET; |
|
2096
|
6
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePI : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2097
|
|
} |
|
2098
|
6
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_AFTER_TARGET; |
|
2099
|
2
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handlePI : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
checkPITargetName(_tokenName); |
|
2100
|
9
1. handlePI : changed conditional boundary → SURVIVED
2. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePI : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePI : negated conditional → KILLED
6. handlePI : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePI : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2101
|
6
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePI : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2102
|
|
} |
|
2103
|
|
// fall through |
|
2104
|
|
case STATE_PI_AFTER_TARGET: |
|
2105
|
|
// Need ws or "?>" |
|
2106
|
|
{ |
|
2107
|
9
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handlePI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handlePI : Replaced operate with second operand → KILLED
9. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
2108
|
11
1. handlePI : changed conditional boundary to IF_ICMPLT → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
6. handlePI : negated conditional → KILLED
7. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handlePI : changed conditional boundary to IF_ICMPEQ → KILLED
9. handlePI : changed conditional boundary to IF_ICMPGE → KILLED
10. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
11. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
|
if (b == BYTE_QMARK) { |
|
2109
|
|
// Quick check, can we see '>' as well? All done, if so |
|
2110
|
22
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePI : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. handlePI : changed conditional boundary → NO_COVERAGE
6. handlePI : negated conditional → NO_COVERAGE
7. handlePI : negated conditional → NO_COVERAGE
8. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
11. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
12. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
13. handlePI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
14. handlePI : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. handlePI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. handlePI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handlePI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handlePI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. handlePI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. handlePI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. handlePI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. handlePI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr < _inputEnd && _inputBuffer.get(_inputPtr) == BYTE_GT) { |
|
2111
|
8
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handlePI : Replaced operate with second operand → NO_COVERAGE
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
2112
|
|
break main_loop; // means we are done |
|
2113
|
|
} |
|
2114
|
|
// If not (whatever reason), let's move to check state |
|
2115
|
6
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePI : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
_state = STATE_PI_AFTER_TARGET_QMARK; |
|
2116
|
|
break; |
|
2117
|
|
} |
|
2118
|
44
1. handlePI : negated conditional → SURVIVED
2. handlePI : negated conditional → SURVIVED
3. handlePI : negated conditional → SURVIVED
4. handlePI : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handlePI : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handlePI : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handlePI : changed conditional boundary to IF_ICMPGE → SURVIVED
8. handlePI : changed conditional boundary to IF_ICMPGE → SURVIVED
9. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
11. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
12. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
13. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
14. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
15. handlePI : changed conditional boundary to IF_ICMPLT → SURVIVED
16. handlePI : changed conditional boundary to IF_ICMPLT → SURVIVED
17. handlePI : changed conditional boundary to IF_ICMPLT → SURVIVED
18. handlePI : changed conditional boundary to IF_ICMPNE → SURVIVED
19. handlePI : changed conditional boundary to IF_ICMPNE → SURVIVED
20. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
21. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
22. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
23. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
24. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
25. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
26. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
27. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
28. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
29. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
30. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
31. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
32. handlePI : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
33. handlePI : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
34. handlePI : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
35. handlePI : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
36. handlePI : negated conditional → KILLED
37. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
38. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
39. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
40. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
41. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
42. handlePI : changed conditional boundary to IF_ICMPGT → KILLED
43. handlePI : changed conditional boundary to IF_ICMPLT → KILLED
44. handlePI : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b == BYTE_SPACE || b == BYTE_CR |
|
2119
|
|
|| b == BYTE_LF || b == BYTE_TAB) { |
|
2120
|
6
1. handlePI : changed conditional boundary to IFGT → SURVIVED
2. handlePI : negated conditional → KILLED
3. handlePI : changed conditional boundary to IFEQ → KILLED
4. handlePI : changed conditional boundary to IFGE → KILLED
5. handlePI : changed conditional boundary to IFLE → KILLED
6. handlePI : changed conditional boundary to IFLT → KILLED
|
if (!asyncSkipSpace()) { // ran out of input? |
|
2121
|
6
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_AFTER_TARGET_WS; |
|
2122
|
6
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePI : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2123
|
|
} |
|
2124
|
1
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
_textBuilder.resetWithEmpty(); |
|
2125
|
|
// Quick check, perhaps we'll see end marker? |
|
2126
|
17
1. handlePI : changed conditional boundary → SURVIVED
2. handlePI : negated conditional → SURVIVED
3. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
6. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
7. handlePI : changed conditional boundary to IF_ICMPEQ → SURVIVED
8. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
10. handlePI : changed conditional boundary to IF_ICMPLT → SURVIVED
11. handlePI : changed conditional boundary to IF_ICMPNE → SURVIVED
12. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. handlePI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
16. handlePI : Replaced operate with second operand → KILLED
17. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if ((_inputPtr+1) < _inputEnd |
|
2127
|
19
1. handlePI : negated conditional → SURVIVED
2. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
3. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handlePI : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handlePI : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handlePI : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. handlePI : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
16. handlePI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
17. handlePI : Replaced operate with second operand → KILLED
18. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
&& _inputBuffer.get(_inputPtr) == BYTE_QMARK |
|
2128
|
11
1. handlePI : negated conditional → SURVIVED
2. handlePI : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handlePI : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handlePI : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handlePI : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handlePI : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
11. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
&& _inputBuffer.get(_inputPtr+1) == BYTE_GT) { |
|
2129
|
8
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handlePI : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
7. handlePI : Replaced operate with second operand → KILLED
8. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_inputPtr += 2; |
|
2130
|
|
break main_loop; // means we are done |
|
2131
|
|
} |
|
2132
|
|
// If not, we'll move to 'data' portion of PI |
|
2133
|
6
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_IN_DATA; |
|
2134
|
1
1. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return parsePIData(); |
|
2135
|
|
} |
|
2136
|
|
// Otherwise, it's an error |
|
2137
|
1
1. handlePI : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportMissingPISpace → NO_COVERAGE
|
reportMissingPISpace(decodeCharForError(b)); |
|
2138
|
|
} |
|
2139
|
|
// fall through |
|
2140
|
|
case STATE_PI_AFTER_TARGET_WS: |
|
2141
|
6
1. handlePI : changed conditional boundary to IFGT → SURVIVED
2. handlePI : negated conditional → KILLED
3. handlePI : changed conditional boundary to IFEQ → KILLED
4. handlePI : changed conditional boundary to IFGE → KILLED
5. handlePI : changed conditional boundary to IFLE → KILLED
6. handlePI : changed conditional boundary to IFLT → KILLED
|
if (!asyncSkipSpace()) { // ran out of input? |
|
2142
|
6
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePI : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2143
|
|
} |
|
2144
|
|
// Can just move to "data" portion right away |
|
2145
|
6
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_IN_DATA; |
|
2146
|
1
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
_textBuilder.resetWithEmpty(); |
|
2147
|
1
1. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return parsePIData(); |
|
2148
|
|
case STATE_PI_AFTER_TARGET_QMARK: |
|
2149
|
|
{ |
|
2150
|
|
// Must get '>' following '?' we saw right after name |
|
2151
|
9
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handlePI : Replaced operate with second operand → NO_COVERAGE
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
byte b = _inputBuffer.get(_inputPtr++); |
|
2152
|
|
// Otherwise, it's an error |
|
2153
|
11
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePI : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. handlePI : negated conditional → NO_COVERAGE
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handlePI : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. handlePI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handlePI : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handlePI : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. handlePI : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (b != BYTE_GT) { |
|
2154
|
1
1. handlePI : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportMissingPISpace → NO_COVERAGE
|
reportMissingPISpace(decodeCharForError(b)); |
|
2155
|
|
} |
|
2156
|
|
} |
|
2157
|
|
// but if it's ok, we are done |
|
2158
|
|
break main_loop; |
|
2159
|
|
case STATE_PI_IN_TARGET: |
|
2160
|
1
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
_tokenName = parsePName(); |
|
2161
|
2
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handlePI : negated conditional → KILLED
|
if (_tokenName == null) { |
|
2162
|
6
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePI : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2163
|
|
} |
|
2164
|
2
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
2. handlePI : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
checkPITargetName(_tokenName); |
|
2165
|
6
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_PI_AFTER_TARGET; |
|
2166
|
|
break; |
|
2167
|
|
|
|
2168
|
|
default: |
|
2169
|
1
1. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return throwInternal(); |
|
2170
|
|
} |
|
2171
|
|
} |
|
2172
|
|
|
|
2173
|
6
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
2174
|
6
1. handlePI : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePI : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
6. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = EVENT_INCOMPLETE; |
|
2175
|
6
1. handlePI : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePI : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePI : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePI : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
5. handlePI : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePI : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return PROCESSING_INSTRUCTION; |
|
2176
|
|
} |
|
2177
|
|
|
|
2178
|
|
private final int handleComment() throws XMLStreamException |
|
2179
|
|
{ |
|
2180
|
12
1. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleComment : changed conditional boundary to IF_ICMPLT → SURVIVED
3. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleComment : negated conditional → KILLED
8. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleComment : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleComment : changed conditional boundary to IF_ICMPGE → KILLED
11. handleComment : changed conditional boundary to IF_ICMPGT → KILLED
12. handleComment : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_state == STATE_COMMENT_CONTENT) { |
|
2181
|
1
1. handleComment : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return parseCommentContents(); |
|
2182
|
|
} |
|
2183
|
9
1. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleComment : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleComment : changed conditional boundary → KILLED
5. handleComment : negated conditional → KILLED
6. handleComment : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleComment : changed conditional boundary to IF_ICMPGE → KILLED
8. handleComment : changed conditional boundary to IF_ICMPGT → KILLED
9. handleComment : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2184
|
6
1. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleComment : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleComment : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2185
|
|
} |
|
2186
|
9
1. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleComment : Replaced operate with second operand → KILLED
9. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
2187
|
|
|
|
2188
|
7
1. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleComment : changed conditional boundary to IFGT → SURVIVED
3. handleComment : changed conditional boundary to IFLT → SURVIVED
4. handleComment : negated conditional → KILLED
5. handleComment : changed conditional boundary to IFEQ → KILLED
6. handleComment : changed conditional boundary to IFGE → KILLED
7. handleComment : changed conditional boundary to IFLE → KILLED
|
if (_state == STATE_DEFAULT) { |
|
2189
|
11
1. handleComment : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleComment : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
6. handleComment : negated conditional → KILLED
7. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleComment : changed conditional boundary to IF_ICMPGT → KILLED
9. handleComment : changed conditional boundary to IF_ICMPGT → KILLED
10. handleComment : changed conditional boundary to IF_ICMPLT → KILLED
11. handleComment : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_HYPHEN) { |
|
2190
|
1
1. handleComment : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
reportTreeUnexpChar(decodeCharForError(b), " (expected '-' for COMMENT)"); |
|
2191
|
|
} |
|
2192
|
6
1. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleComment : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_COMMENT_CONTENT; |
|
2193
|
1
1. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
_textBuilder.resetWithEmpty(); |
|
2194
|
1
1. handleComment : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return parseCommentContents(); |
|
2195
|
|
} |
|
2196
|
12
1. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleComment : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. handleComment : negated conditional → NO_COVERAGE
6. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
8. handleComment : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_state == STATE_COMMENT_HYPHEN2) { |
|
2197
|
|
// We are almost done, just need to get '>' at the end |
|
2198
|
11
1. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleComment : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. handleComment : negated conditional → NO_COVERAGE
6. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleComment : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
8. handleComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleComment : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleComment : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
11. handleComment : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (b != BYTE_GT) { |
|
2199
|
1
1. handleComment : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportDoubleHyphenInComments → NO_COVERAGE
|
reportDoubleHyphenInComments(); |
|
2200
|
|
} |
|
2201
|
6
1. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleComment : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
_state = STATE_DEFAULT; |
|
2202
|
6
1. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleComment : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleComment : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
_nextEvent = EVENT_INCOMPLETE; |
|
2203
|
6
1. handleComment : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleComment : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleComment : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleComment : Bug fixed: CRCR replace with One, Substituted 5 with 1 → NO_COVERAGE
5. handleComment : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleComment : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return COMMENT; |
|
2204
|
|
} |
|
2205
|
1
1. handleComment : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return throwInternal(); |
|
2206
|
|
} |
|
2207
|
|
|
|
2208
|
|
/* |
|
2209
|
|
/********************************************************************** |
|
2210
|
|
/* Second-level parsing; helper methods |
|
2211
|
|
/********************************************************************** |
|
2212
|
|
*/ |
|
2213
|
|
|
|
2214
|
|
/** |
|
2215
|
|
* Method to skip whatever space can be skipped. |
|
2216
|
|
*<p> |
|
2217
|
|
* NOTE: if available content ends with a CR, method will set |
|
2218
|
|
* <code>_pendingInput</code> to <code>PENDING_STATE_CR</code>. |
|
2219
|
|
* |
|
2220
|
|
* @return True, if was able to skip through the space and find |
|
2221
|
|
* a non-space byte; false if reached end-of-buffer |
|
2222
|
|
*/ |
|
2223
|
|
private boolean asyncSkipSpace() throws XMLStreamException |
|
2224
|
|
{ |
|
2225
|
9
1. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. asyncSkipSpace : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. asyncSkipSpace : changed conditional boundary → KILLED
5. asyncSkipSpace : negated conditional → KILLED
6. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → KILLED
7. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → KILLED
8. asyncSkipSpace : changed conditional boundary to IF_ICMPLT → KILLED
9. asyncSkipSpace : changed conditional boundary to IF_ICMPNE → KILLED
|
while (_inputPtr < _inputEnd) { |
|
2226
|
2
1. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
byte b = _inputBuffer.get(_inputPtr); |
|
2227
|
19
1. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
8. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
9. asyncSkipSpace : changed conditional boundary → KILLED
10. asyncSkipSpace : Replaced bitwise AND with OR → KILLED
11. asyncSkipSpace : negated conditional → KILLED
12. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. asyncSkipSpace : changed conditional boundary to IF_ICMPEQ → KILLED
15. asyncSkipSpace : changed conditional boundary to IF_ICMPGE → KILLED
16. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → KILLED
17. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → KILLED
18. asyncSkipSpace : changed conditional boundary to IF_ICMPLT → KILLED
19. asyncSkipSpace : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((b & 0xFF) > INT_SPACE) { |
|
2228
|
|
// hmmmh. Shouldn't this be handled someplace else? |
|
2229
|
12
1. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
3. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
4. asyncSkipSpace : changed conditional boundary to IF_ICMPLT → SURVIVED
5. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
9. asyncSkipSpace : negated conditional → KILLED
10. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. asyncSkipSpace : changed conditional boundary to IF_ICMPEQ → KILLED
12. asyncSkipSpace : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_pendingInput == PENDING_STATE_CR) { |
|
2230
|
1
1. asyncSkipSpace : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
2231
|
6
1. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
2232
|
|
} |
|
2233
|
6
1. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. asyncSkipSpace : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
2234
|
|
} |
|
2235
|
8
1. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. asyncSkipSpace : Replaced operate with second operand → KILLED
8. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
2236
|
11
1. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
2. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
3. asyncSkipSpace : changed conditional boundary to IF_ICMPLT → SURVIVED
4. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
8. asyncSkipSpace : negated conditional → KILLED
9. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. asyncSkipSpace : changed conditional boundary to IF_ICMPEQ → KILLED
11. asyncSkipSpace : changed conditional boundary to IF_ICMPGE → KILLED
|
if (b == BYTE_LF) { |
|
2237
|
1
1. asyncSkipSpace : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
2238
|
11
1. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
2. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
3. asyncSkipSpace : changed conditional boundary to IF_ICMPLT → SURVIVED
4. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
8. asyncSkipSpace : negated conditional → KILLED
9. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. asyncSkipSpace : changed conditional boundary to IF_ICMPEQ → KILLED
11. asyncSkipSpace : changed conditional boundary to IF_ICMPGE → KILLED
|
} else if (b == BYTE_CR) { |
|
2239
|
9
1. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. asyncSkipSpace : changed conditional boundary to IF_ICMPNE → SURVIVED
4. asyncSkipSpace : changed conditional boundary → KILLED
5. asyncSkipSpace : negated conditional → KILLED
6. asyncSkipSpace : changed conditional boundary to IF_ICMPEQ → KILLED
7. asyncSkipSpace : changed conditional boundary to IF_ICMPGE → KILLED
8. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → KILLED
9. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2240
|
6
1. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
2241
|
|
break; |
|
2242
|
|
} |
|
2243
|
13
1. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. asyncSkipSpace : changed conditional boundary to IF_ICMPGE → SURVIVED
4. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
5. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
6. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
10. asyncSkipSpace : negated conditional → KILLED
11. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. asyncSkipSpace : changed conditional boundary to IF_ICMPEQ → KILLED
13. asyncSkipSpace : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
2244
|
8
1. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. asyncSkipSpace : Replaced operate with second operand → NO_COVERAGE
6. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. asyncSkipSpace : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
2245
|
|
} |
|
2246
|
1
1. asyncSkipSpace : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
2247
|
22
1. asyncSkipSpace : negated conditional → SURVIVED
2. asyncSkipSpace : changed conditional boundary to IF_ICMPGE → SURVIVED
3. asyncSkipSpace : changed conditional boundary to IF_ICMPGE → SURVIVED
4. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
5. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → SURVIVED
6. asyncSkipSpace : changed conditional boundary to IF_ICMPLT → SURVIVED
7. asyncSkipSpace : changed conditional boundary to IF_ICMPNE → SURVIVED
8. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
15. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
16. asyncSkipSpace : negated conditional → KILLED
17. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → KILLED
20. asyncSkipSpace : changed conditional boundary to IF_ICMPGT → KILLED
21. asyncSkipSpace : changed conditional boundary to IF_ICMPLT → KILLED
22. asyncSkipSpace : changed conditional boundary to IF_ICMPNE → KILLED
|
} else if (b != BYTE_SPACE && b != BYTE_TAB) { |
|
2248
|
1
1. asyncSkipSpace : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
throwInvalidSpace(b); |
|
2249
|
|
} |
|
2250
|
|
} |
|
2251
|
6
1. asyncSkipSpace : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. asyncSkipSpace : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. asyncSkipSpace : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. asyncSkipSpace : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. asyncSkipSpace : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. asyncSkipSpace : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
2252
|
|
} |
|
2253
|
|
|
|
2254
|
|
/** |
|
2255
|
|
* Method called when a new token (within tree) starts with an |
|
2256
|
|
* entity. |
|
2257
|
|
* |
|
2258
|
|
* @return Type of event to return |
|
2259
|
|
*/ |
|
2260
|
|
protected int handleEntityStartingToken() throws XMLStreamException |
|
2261
|
|
{ |
|
2262
|
1
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
_textBuilder.resetWithEmpty(); |
|
2263
|
9
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEntityStartingToken : Replaced operate with second operand → KILLED
9. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); // we know one is available |
|
2264
|
11
1. handleEntityStartingToken : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleEntityStartingToken : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED
7. handleEntityStartingToken : negated conditional → KILLED
8. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleEntityStartingToken : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleEntityStartingToken : changed conditional boundary to IF_ICMPGE → KILLED
11. handleEntityStartingToken : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_HASH) { // numeric character entity |
|
2265
|
1
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
_textBuilder.resetWithEmpty(); |
|
2266
|
6
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_TREE_NUMERIC_ENTITY_START; |
|
2267
|
6
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted -70 with 1 → KILLED
6. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ENT_SEEN_HASH; |
|
2268
|
9
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEntityStartingToken : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEntityStartingToken : changed conditional boundary → KILLED
5. handleEntityStartingToken : negated conditional → KILLED
6. handleEntityStartingToken : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEntityStartingToken : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEntityStartingToken : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEntityStartingToken : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // but no more content to parse yet |
|
2269
|
6
1. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2270
|
|
} |
|
2271
|
1
1. handleEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleNumericEntityStartingToken(); |
|
2272
|
|
} |
|
2273
|
|
PName n = parseNewEntityName(b); |
|
2274
|
|
// null if incomplete; non-null otherwise |
|
2275
|
1
1. handleEntityStartingToken : negated conditional → KILLED
|
if (n == null) { |
|
2276
|
|
// Not sure if it's a char entity or general one; so we don't yet know type |
|
2277
|
6
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
6. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_TREE_NAMED_ENTITY_START; |
|
2278
|
6
1. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2279
|
|
} |
|
2280
|
|
int ch = decodeGeneralEntity(n); |
|
2281
|
6
1. handleEntityStartingToken : changed conditional boundary to IFGT → SURVIVED
2. handleEntityStartingToken : negated conditional → KILLED
3. handleEntityStartingToken : changed conditional boundary to IFEQ → KILLED
4. handleEntityStartingToken : changed conditional boundary to IFGE → KILLED
5. handleEntityStartingToken : changed conditional boundary to IFLE → KILLED
6. handleEntityStartingToken : changed conditional boundary to IFLT → KILLED
|
if (ch == 0) { // not a character entity |
|
2282
|
1
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
_tokenName = n; |
|
2283
|
8
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
3. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
7. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_nextEvent = _currToken = ENTITY_REFERENCE); |
|
2284
|
|
} |
|
2285
|
|
// character entity; initialize buffer, |
|
2286
|
2
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleEntityStartingToken : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
_textBuilder.resetWithChar((char)ch); |
|
2287
|
6
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = 0; |
|
2288
|
6
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = CHARACTERS; |
|
2289
|
7
1. handleEntityStartingToken : negated conditional → SURVIVED
2. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. handleEntityStartingToken : changed conditional boundary to IFGE → SURVIVED
4. handleEntityStartingToken : changed conditional boundary to IFGT → SURVIVED
5. handleEntityStartingToken : changed conditional boundary to IFLE → SURVIVED
6. handleEntityStartingToken : changed conditional boundary to IFLT → SURVIVED
7. handleEntityStartingToken : changed conditional boundary to IFNE → SURVIVED
|
if (_cfgLazyParsing) { |
|
2290
|
6
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. handleEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_tokenIncomplete = true; |
|
2291
|
|
} else { |
|
2292
|
1
1. handleEntityStartingToken : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
finishCharacters(); |
|
2293
|
|
} |
|
2294
|
2
1. handleEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
2295
|
|
} |
|
2296
|
|
|
|
2297
|
|
/** |
|
2298
|
|
* Method called when we see an entity that is starting a new token, |
|
2299
|
|
* and part of its name has been decoded (but not all) |
|
2300
|
|
*/ |
|
2301
|
|
protected int handleNamedEntityStartingToken() throws XMLStreamException |
|
2302
|
|
{ |
|
2303
|
|
PName n = parseEntityName(); |
|
2304
|
|
// null if incomplete; non-null otherwise |
|
2305
|
1
1. handleNamedEntityStartingToken : negated conditional → KILLED
|
if (n == null) { |
|
2306
|
2
1. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleNamedEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _nextEvent; // i.e. EVENT_INCOMPLETE |
|
2307
|
|
} |
|
2308
|
|
int ch = decodeGeneralEntity(n); |
|
2309
|
6
1. handleNamedEntityStartingToken : changed conditional boundary to IFGT → SURVIVED
2. handleNamedEntityStartingToken : negated conditional → KILLED
3. handleNamedEntityStartingToken : changed conditional boundary to IFEQ → KILLED
4. handleNamedEntityStartingToken : changed conditional boundary to IFGE → KILLED
5. handleNamedEntityStartingToken : changed conditional boundary to IFLE → KILLED
6. handleNamedEntityStartingToken : changed conditional boundary to IFLT → KILLED
|
if (ch == 0) { // not a character entity |
|
2310
|
1
1. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
_tokenName = n; |
|
2311
|
7
1. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleNamedEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNamedEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNamedEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNamedEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
6. handleNamedEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleNamedEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_currToken = ENTITY_REFERENCE); |
|
2312
|
|
} |
|
2313
|
|
// character entity; initialize buffer, |
|
2314
|
2
1. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleNamedEntityStartingToken : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
_textBuilder.resetWithChar((char)ch); |
|
2315
|
6
1. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleNamedEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNamedEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNamedEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNamedEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleNamedEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = 0; |
|
2316
|
6
1. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleNamedEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNamedEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNamedEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNamedEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleNamedEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = CHARACTERS; |
|
2317
|
7
1. handleNamedEntityStartingToken : negated conditional → SURVIVED
2. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
3. handleNamedEntityStartingToken : changed conditional boundary to IFGE → SURVIVED
4. handleNamedEntityStartingToken : changed conditional boundary to IFGT → SURVIVED
5. handleNamedEntityStartingToken : changed conditional boundary to IFLE → SURVIVED
6. handleNamedEntityStartingToken : changed conditional boundary to IFLT → SURVIVED
7. handleNamedEntityStartingToken : changed conditional boundary to IFNE → SURVIVED
|
if (_cfgLazyParsing) { |
|
2318
|
6
1. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. handleNamedEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNamedEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNamedEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNamedEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleNamedEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_tokenIncomplete = true; |
|
2319
|
|
} else { |
|
2320
|
1
1. handleNamedEntityStartingToken : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
finishCharacters(); |
|
2321
|
|
} |
|
2322
|
2
1. handleNamedEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleNamedEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
2323
|
|
} |
|
2324
|
|
|
|
2325
|
|
/** |
|
2326
|
|
* Method called to handle cases where we find something other than |
|
2327
|
|
* a character entity (or one of 4 pre-defined general entities that |
|
2328
|
|
* act like character entities) |
|
2329
|
|
*/ |
|
2330
|
|
protected int handleNumericEntityStartingToken() throws XMLStreamException |
|
2331
|
|
{ |
|
2332
|
12
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPLT → SURVIVED
3. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted -70 with 1 → KILLED
7. handleNumericEntityStartingToken : negated conditional → KILLED
8. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGE → KILLED
11. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGT → KILLED
12. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_pendingInput == PENDING_STATE_ENT_SEEN_HASH) { |
|
2333
|
2
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
byte b = _inputBuffer.get(_inputPtr); // we know one is available |
|
2334
|
6
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_entityValue = 0; |
|
2335
|
11
1. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPLT → SURVIVED
2. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED
6. handleNumericEntityStartingToken : negated conditional → KILLED
7. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGE → KILLED
10. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGT → KILLED
11. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGT → KILLED
|
if (b == BYTE_x) { // 'x' marks hex |
|
2336
|
6
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted -73 with 1 → KILLED
6. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ENT_IN_HEX_DIGIT; |
|
2337
|
16
1. handleNumericEntityStartingToken : changed conditional boundary → SURVIVED
2. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
5. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPNE → SURVIVED
6. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. handleNumericEntityStartingToken : Replaced operate with second operand → KILLED
11. handleNumericEntityStartingToken : negated conditional → KILLED
12. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPEQ → KILLED
14. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGE → KILLED
15. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGT → KILLED
16. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGT → KILLED
|
if (++_inputPtr >= _inputEnd) { |
|
2338
|
6
1. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleNumericEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2339
|
|
} |
|
2340
|
|
} else { // if not 'x', must be a digit |
|
2341
|
6
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted -72 with 1 → KILLED
6. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ENT_IN_DEC_DIGIT; |
|
2342
|
|
// let's just keep byte for calculation |
|
2343
|
|
} |
|
2344
|
|
} |
|
2345
|
12
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted -73 with 1 → KILLED
8. handleNumericEntityStartingToken : negated conditional → KILLED
9. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPGE → KILLED
12. handleNumericEntityStartingToken : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_ENT_IN_HEX_DIGIT) { |
|
2346
|
6
1. handleNumericEntityStartingToken : changed conditional boundary to IFGT → SURVIVED
2. handleNumericEntityStartingToken : negated conditional → KILLED
3. handleNumericEntityStartingToken : changed conditional boundary to IFEQ → KILLED
4. handleNumericEntityStartingToken : changed conditional boundary to IFGE → KILLED
5. handleNumericEntityStartingToken : changed conditional boundary to IFLE → KILLED
6. handleNumericEntityStartingToken : changed conditional boundary to IFLT → KILLED
|
if (!decodeHexEntity()) { |
|
2347
|
6
1. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleNumericEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2348
|
|
} |
|
2349
|
|
} else { |
|
2350
|
6
1. handleNumericEntityStartingToken : changed conditional boundary to IFGT → SURVIVED
2. handleNumericEntityStartingToken : negated conditional → KILLED
3. handleNumericEntityStartingToken : changed conditional boundary to IFEQ → KILLED
4. handleNumericEntityStartingToken : changed conditional boundary to IFGE → KILLED
5. handleNumericEntityStartingToken : changed conditional boundary to IFLE → KILLED
6. handleNumericEntityStartingToken : changed conditional boundary to IFLT → KILLED
|
if (!decodeDecEntity()) { |
|
2351
|
6
1. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleNumericEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2352
|
|
} |
|
2353
|
|
} |
|
2354
|
|
// and now we have the full value |
|
2355
|
2
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndAppendEntityCharacter → KILLED
|
verifyAndAppendEntityCharacter(_entityValue); |
|
2356
|
6
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = CHARACTERS; |
|
2357
|
7
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : changed conditional boundary to IFLE → SURVIVED
3. handleNumericEntityStartingToken : changed conditional boundary to IFLT → SURVIVED
4. handleNumericEntityStartingToken : negated conditional → KILLED
5. handleNumericEntityStartingToken : changed conditional boundary to IFGE → KILLED
6. handleNumericEntityStartingToken : changed conditional boundary to IFGT → KILLED
7. handleNumericEntityStartingToken : changed conditional boundary to IFNE → KILLED
|
if (_cfgLazyParsing) { |
|
2358
|
6
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_tokenIncomplete = true; |
|
2359
|
|
} else { |
|
2360
|
1
1. handleNumericEntityStartingToken : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
finishCharacters(); |
|
2361
|
|
} |
|
2362
|
6
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleNumericEntityStartingToken : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleNumericEntityStartingToken : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleNumericEntityStartingToken : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleNumericEntityStartingToken : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
2363
|
2
1. handleNumericEntityStartingToken : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleNumericEntityStartingToken : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
2364
|
|
} |
|
2365
|
|
|
|
2366
|
|
/** |
|
2367
|
|
* @return True if entity was decoded (and value assigned to <code>_entityValue</code>; |
|
2368
|
|
* false otherwise |
|
2369
|
|
*/ |
|
2370
|
|
protected final boolean decodeHexEntity() throws XMLStreamException |
|
2371
|
|
{ |
|
2372
|
1
1. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
int value = _entityValue; |
|
2373
|
9
1. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. decodeHexEntity : changed conditional boundary → KILLED
5. decodeHexEntity : negated conditional → KILLED
6. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
7. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
8. decodeHexEntity : changed conditional boundary to IF_ICMPLT → KILLED
9. decodeHexEntity : changed conditional boundary to IF_ICMPNE → KILLED
|
while (_inputPtr < _inputEnd) { |
|
2374
|
9
1. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeHexEntity : Replaced operate with second operand → KILLED
9. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
2375
|
11
1. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
5. decodeHexEntity : negated conditional → KILLED
6. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → KILLED
8. decodeHexEntity : changed conditional boundary to IF_ICMPGE → KILLED
9. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
10. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
11. decodeHexEntity : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_SEMICOLON) { |
|
2376
|
1
1. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
_entityValue = value; |
|
2377
|
6
1. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. decodeHexEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
2378
|
|
} |
|
2379
|
|
int ch = (int) b; |
|
2380
|
23
1. decodeHexEntity : changed conditional boundary → SURVIVED
2. decodeHexEntity : changed conditional boundary → SURVIVED
3. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. decodeHexEntity : changed conditional boundary to IF_ICMPGE → SURVIVED
5. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED
12. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
13. decodeHexEntity : negated conditional → KILLED
14. decodeHexEntity : negated conditional → KILLED
15. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → KILLED
18. decodeHexEntity : changed conditional boundary to IF_ICMPGE → KILLED
19. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
20. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
21. decodeHexEntity : changed conditional boundary to IF_ICMPLT → KILLED
22. decodeHexEntity : changed conditional boundary to IF_ICMPNE → KILLED
23. decodeHexEntity : changed conditional boundary to IF_ICMPNE → KILLED
|
if (ch <= INT_9 && ch >= INT_0) { |
|
2381
|
5
1. decodeHexEntity : Changed increment from -48 to 48 → KILLED
2. decodeHexEntity : UOI Mutator: Added unary decrement -48 -> -49 to local variable → KILLED
3. decodeHexEntity : UOI Mutator: Added unary increment -48 -> -47 to local variable → KILLED
4. decodeHexEntity : UOI Mutator: Removed unary increment of local variable → KILLED
5. decodeHexEntity : UOI Mutator: Reversed increment of local variable → KILLED
|
ch -= INT_0; |
|
2382
|
23
1. decodeHexEntity : changed conditional boundary → SURVIVED
2. decodeHexEntity : changed conditional boundary → SURVIVED
3. decodeHexEntity : negated conditional → SURVIVED
4. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. decodeHexEntity : changed conditional boundary to IF_ICMPGE → SURVIVED
6. decodeHexEntity : changed conditional boundary to IF_ICMPGE → SURVIVED
7. decodeHexEntity : changed conditional boundary to IF_ICMPGT → SURVIVED
8. decodeHexEntity : changed conditional boundary to IF_ICMPGT → SURVIVED
9. decodeHexEntity : changed conditional boundary to IF_ICMPNE → SURVIVED
10. decodeHexEntity : changed conditional boundary to IF_ICMPNE → SURVIVED
11. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
15. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 70 with 1 → KILLED
18. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
19. decodeHexEntity : negated conditional → KILLED
20. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
22. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → KILLED
23. decodeHexEntity : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (ch <= INT_F && ch >= INT_A) { |
|
2383
|
12
1. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
8. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 65 with 1 → NO_COVERAGE
9. decodeHexEntity : Replaced operate with second operand → NO_COVERAGE
10. decodeHexEntity : Replaced operate with second operand → NO_COVERAGE
11. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = 10 + (ch - INT_A); |
|
2384
|
23
1. decodeHexEntity : changed conditional boundary → SURVIVED
2. decodeHexEntity : changed conditional boundary → SURVIVED
3. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. decodeHexEntity : changed conditional boundary to IF_ICMPGE → SURVIVED
6. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 102 with 1 → KILLED
13. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED
14. decodeHexEntity : negated conditional → KILLED
15. decodeHexEntity : negated conditional → KILLED
16. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. decodeHexEntity : changed conditional boundary to IF_ICMPGE → KILLED
19. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
20. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
21. decodeHexEntity : changed conditional boundary to IF_ICMPLT → KILLED
22. decodeHexEntity : changed conditional boundary to IF_ICMPNE → KILLED
23. decodeHexEntity : changed conditional boundary to IF_ICMPNE → KILLED
|
} else if (ch <= INT_f && ch >= INT_a) { |
|
2385
|
12
1. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
8. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED
9. decodeHexEntity : Replaced operate with second operand → KILLED
10. decodeHexEntity : Replaced operate with second operand → KILLED
11. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = 10 + (ch - INT_a); |
|
2386
|
|
} else { |
|
2387
|
1
1. decodeHexEntity : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected a hex digit (0-9a-fA-F) for character entity"); |
|
2388
|
|
} |
|
2389
|
7
1. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
5. decodeHexEntity : Replaced operate with second operand → KILLED
6. decodeHexEntity : Replaced Shift Left with Shift Right → KILLED
7. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
value = (value << 4) + ch; |
|
2390
|
13
1. decodeHexEntity : changed conditional boundary → SURVIVED
2. decodeHexEntity : changed conditional boundary to IF_ICMPLT → SURVIVED
3. decodeHexEntity : changed conditional boundary to IF_ICMPNE → SURVIVED
4. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED
8. decodeHexEntity : negated conditional → KILLED
9. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. decodeHexEntity : changed conditional boundary to IF_ICMPEQ → KILLED
11. decodeHexEntity : changed conditional boundary to IF_ICMPGE → KILLED
12. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
13. decodeHexEntity : changed conditional boundary to IF_ICMPGT → KILLED
|
if (value > MAX_UNICODE_CHAR) { // Overflow? |
|
2391
|
1
1. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → NO_COVERAGE
|
_entityValue = value; |
|
2392
|
1
1. decodeHexEntity : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
reportEntityOverflow(); |
|
2393
|
|
} |
|
2394
|
|
} |
|
2395
|
1
1. decodeHexEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
_entityValue = value; |
|
2396
|
6
1. decodeHexEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeHexEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeHexEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeHexEntity : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. decodeHexEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. decodeHexEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
2397
|
|
} |
|
2398
|
|
|
|
2399
|
|
/** |
|
2400
|
|
* @return True if entity was decoded (and value assigned to <code>_entityValue</code>; |
|
2401
|
|
* false otherwise |
|
2402
|
|
*/ |
|
2403
|
|
protected final boolean decodeDecEntity() throws XMLStreamException |
|
2404
|
|
{ |
|
2405
|
1
1. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
int value = _entityValue; |
|
2406
|
9
1. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. decodeDecEntity : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. decodeDecEntity : changed conditional boundary → KILLED
5. decodeDecEntity : negated conditional → KILLED
6. decodeDecEntity : changed conditional boundary to IF_ICMPGT → KILLED
7. decodeDecEntity : changed conditional boundary to IF_ICMPGT → KILLED
8. decodeDecEntity : changed conditional boundary to IF_ICMPLT → KILLED
9. decodeDecEntity : changed conditional boundary to IF_ICMPNE → KILLED
|
while (_inputPtr < _inputEnd) { |
|
2407
|
9
1. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeDecEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeDecEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeDecEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeDecEntity : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeDecEntity : Replaced operate with second operand → KILLED
9. decodeDecEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
2408
|
11
1. decodeDecEntity : changed conditional boundary to IF_ICMPLT → SURVIVED
2. decodeDecEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeDecEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. decodeDecEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. decodeDecEntity : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
6. decodeDecEntity : negated conditional → KILLED
7. decodeDecEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. decodeDecEntity : changed conditional boundary to IF_ICMPEQ → KILLED
9. decodeDecEntity : changed conditional boundary to IF_ICMPGE → KILLED
10. decodeDecEntity : changed conditional boundary to IF_ICMPGT → KILLED
11. decodeDecEntity : changed conditional boundary to IF_ICMPGT → KILLED
|
if (b == BYTE_SEMICOLON) { |
|
2409
|
1
1. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
_entityValue = value; |
|
2410
|
6
1. decodeDecEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeDecEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeDecEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeDecEntity : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. decodeDecEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. decodeDecEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
2411
|
|
} |
|
2412
|
6
1. decodeDecEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeDecEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeDecEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeDecEntity : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
5. decodeDecEntity : Replaced operate with second operand → KILLED
6. decodeDecEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int ch = ((int) b) - INT_0; |
|
2413
|
20
1. decodeDecEntity : changed conditional boundary → SURVIVED
2. decodeDecEntity : changed conditional boundary to IF_ICMPLT → SURVIVED
3. decodeDecEntity : changed conditional boundary to IF_ICMPNE → SURVIVED
4. decodeDecEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeDecEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeDecEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeDecEntity : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
8. decodeDecEntity : changed conditional boundary → KILLED
9. decodeDecEntity : negated conditional → KILLED
10. decodeDecEntity : negated conditional → KILLED
11. decodeDecEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. decodeDecEntity : changed conditional boundary to IF_ICMPEQ → KILLED
13. decodeDecEntity : changed conditional boundary to IF_ICMPGE → KILLED
14. decodeDecEntity : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeDecEntity : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeDecEntity : changed conditional boundary to IFEQ → KILLED
17. decodeDecEntity : changed conditional boundary to IFGE → KILLED
18. decodeDecEntity : changed conditional boundary to IFGT → KILLED
19. decodeDecEntity : changed conditional boundary to IFLE → KILLED
20. decodeDecEntity : changed conditional boundary to IFNE → KILLED
|
if (ch < 0 || ch > 9) { // invalid entity |
|
2414
|
1
1. decodeDecEntity : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected a digit (0 - 9) for character entity"); |
|
2415
|
|
} |
|
2416
|
7
1. decodeDecEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeDecEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeDecEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeDecEntity : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
5. decodeDecEntity : Replaced operate with second operand → KILLED
6. decodeDecEntity : Replaced operate with second operand → KILLED
7. decodeDecEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
value = (value * 10) + ch; |
|
2417
|
13
1. decodeDecEntity : changed conditional boundary → SURVIVED
2. decodeDecEntity : changed conditional boundary to IF_ICMPLT → SURVIVED
3. decodeDecEntity : changed conditional boundary to IF_ICMPNE → SURVIVED
4. decodeDecEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeDecEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeDecEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeDecEntity : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED
8. decodeDecEntity : negated conditional → KILLED
9. decodeDecEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. decodeDecEntity : changed conditional boundary to IF_ICMPEQ → KILLED
11. decodeDecEntity : changed conditional boundary to IF_ICMPGE → KILLED
12. decodeDecEntity : changed conditional boundary to IF_ICMPGT → KILLED
13. decodeDecEntity : changed conditional boundary to IF_ICMPGT → KILLED
|
if (value > MAX_UNICODE_CHAR) { // Overflow? |
|
2418
|
1
1. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → NO_COVERAGE
|
_entityValue = value; |
|
2419
|
1
1. decodeDecEntity : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
reportEntityOverflow(); |
|
2420
|
|
} |
|
2421
|
|
} |
|
2422
|
1
1. decodeDecEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
_entityValue = value; |
|
2423
|
6
1. decodeDecEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeDecEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeDecEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeDecEntity : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. decodeDecEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. decodeDecEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
2424
|
|
} |
|
2425
|
|
|
|
2426
|
|
/** |
|
2427
|
|
* Method that verifies that given named entity is followed by |
|
2428
|
|
* a semi-colon (meaning next byte must be available for reading); |
|
2429
|
|
* and if so, whether it is one of pre-defined general entities. |
|
2430
|
|
* |
|
2431
|
|
* @return Character of the expanded pre-defined general entity |
|
2432
|
|
* (if name matches one); zero if not. |
|
2433
|
|
*/ |
|
2434
|
|
protected final int decodeGeneralEntity(PName entityName) throws XMLStreamException |
|
2435
|
|
{ |
|
2436
|
|
// First things first: verify that we got semicolon afterwards |
|
2437
|
9
1. decodeGeneralEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeGeneralEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeGeneralEntity : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeGeneralEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeGeneralEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeGeneralEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeGeneralEntity : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeGeneralEntity : Replaced operate with second operand → KILLED
9. decodeGeneralEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
2438
|
11
1. decodeGeneralEntity : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeGeneralEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeGeneralEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. decodeGeneralEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. decodeGeneralEntity : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
6. decodeGeneralEntity : negated conditional → KILLED
7. decodeGeneralEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. decodeGeneralEntity : changed conditional boundary to IF_ICMPGT → KILLED
9. decodeGeneralEntity : changed conditional boundary to IF_ICMPGT → KILLED
10. decodeGeneralEntity : changed conditional boundary to IF_ICMPLT → KILLED
11. decodeGeneralEntity : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_SEMICOLON) { |
|
2439
|
1
1. decodeGeneralEntity : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected ';' following entity name (\""+entityName.getPrefixedName()+"\")"); |
|
2440
|
|
} |
|
2441
|
|
|
|
2442
|
|
String name = entityName.getPrefixedName(); |
|
2443
|
2
1. decodeGeneralEntity : negated conditional → KILLED
2. decodeGeneralEntity : changed conditional of IF_ACMP → KILLED
|
if (name == "amp") { |
|
2444
|
6
1. decodeGeneralEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeGeneralEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeGeneralEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeGeneralEntity : Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED
5. decodeGeneralEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. decodeGeneralEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return INT_AMP; |
|
2445
|
|
} |
|
2446
|
2
1. decodeGeneralEntity : negated conditional → KILLED
2. decodeGeneralEntity : changed conditional of IF_ACMP → KILLED
|
if (name == "lt") { |
|
2447
|
6
1. decodeGeneralEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeGeneralEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeGeneralEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeGeneralEntity : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
5. decodeGeneralEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. decodeGeneralEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return INT_LT; |
|
2448
|
|
} |
|
2449
|
2
1. decodeGeneralEntity : negated conditional → KILLED
2. decodeGeneralEntity : changed conditional of IF_ACMP → KILLED
|
if (name == "apos") { |
|
2450
|
6
1. decodeGeneralEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeGeneralEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeGeneralEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeGeneralEntity : Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE
5. decodeGeneralEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. decodeGeneralEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_APOS; |
|
2451
|
|
} |
|
2452
|
2
1. decodeGeneralEntity : negated conditional → KILLED
2. decodeGeneralEntity : changed conditional of IF_ACMP → KILLED
|
if (name == "quot") { |
|
2453
|
6
1. decodeGeneralEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeGeneralEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeGeneralEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeGeneralEntity : Bug fixed: CRCR replace with One, Substituted 34 with 1 → NO_COVERAGE
5. decodeGeneralEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. decodeGeneralEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_QUOTE; |
|
2454
|
|
} |
|
2455
|
2
1. decodeGeneralEntity : negated conditional → KILLED
2. decodeGeneralEntity : changed conditional of IF_ACMP → KILLED
|
if (name == "gt") { |
|
2456
|
6
1. decodeGeneralEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeGeneralEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeGeneralEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeGeneralEntity : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. decodeGeneralEntity : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. decodeGeneralEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_GT; |
|
2457
|
|
} |
|
2458
|
6
1. decodeGeneralEntity : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeGeneralEntity : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeGeneralEntity : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeGeneralEntity : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. decodeGeneralEntity : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. decodeGeneralEntity : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
2459
|
|
} |
|
2460
|
|
|
|
2461
|
|
/** |
|
2462
|
|
* Method called when '<' and (what appears to be) a name |
|
2463
|
|
* start character have been seen. |
|
2464
|
|
*/ |
|
2465
|
|
protected int handleStartElementStart(byte b) |
|
2466
|
|
throws XMLStreamException |
|
2467
|
|
{ |
|
2468
|
|
PName elemName = parseNewName(b); |
|
2469
|
6
1. handleStartElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleStartElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleStartElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = START_ELEMENT; |
|
2470
|
1
1. handleStartElementStart : negated conditional → KILLED
|
if (elemName == null) { |
|
2471
|
6
1. handleStartElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleStartElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_ELEM_NAME; |
|
2472
|
6
1. handleStartElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElementStart : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElementStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2473
|
|
} |
|
2474
|
1
1. handleStartElementStart : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::initStartElement → KILLED
|
initStartElement(elemName); |
|
2475
|
1
1. handleStartElementStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleStartElement(); |
|
2476
|
|
} |
|
2477
|
|
|
|
2478
|
|
protected int handleStartElement() |
|
2479
|
|
throws XMLStreamException |
|
2480
|
|
{ |
|
2481
|
|
main_loop: |
|
2482
|
|
while (true) { |
|
2483
|
9
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleStartElement : changed conditional boundary → KILLED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2484
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2485
|
|
} |
|
2486
|
|
|
|
2487
|
|
byte b; |
|
2488
|
|
int c; |
|
2489
|
|
|
|
2490
|
1
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
switch (_state) { |
|
2491
|
|
case STATE_SE_ELEM_NAME: |
|
2492
|
|
{ |
|
2493
|
|
PName elemName = parsePName(); |
|
2494
|
1
1. handleStartElement : negated conditional → KILLED
|
if (elemName == null) { |
|
2495
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2496
|
|
} |
|
2497
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::initStartElement → KILLED
|
initStartElement(elemName); |
|
2498
|
|
} |
|
2499
|
9
1. handleStartElement : changed conditional boundary → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2500
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2501
|
|
} |
|
2502
|
|
// Fall through to next state |
|
2503
|
|
|
|
2504
|
|
case STATE_SE_SPACE_OR_END: // obligatory space, or end |
|
2505
|
7
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleStartElement : changed conditional boundary to IFGE → SURVIVED
3. handleStartElement : negated conditional → KILLED
4. handleStartElement : changed conditional boundary to IFGT → KILLED
5. handleStartElement : changed conditional boundary to IFLE → KILLED
6. handleStartElement : changed conditional boundary to IFLT → KILLED
7. handleStartElement : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { |
|
2506
|
6
1. handleStartElement : changed conditional boundary to IFGE → SURVIVED
2. handleStartElement : changed conditional boundary to IFGT → SURVIVED
3. handleStartElement : negated conditional → KILLED
4. handleStartElement : changed conditional boundary to IFEQ → KILLED
5. handleStartElement : changed conditional boundary to IFLE → KILLED
6. handleStartElement : changed conditional boundary to IFLT → KILLED
|
if (!handlePartialCR()) { |
|
2507
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2508
|
|
} |
|
2509
|
|
// Ok, got a space, can move on |
|
2510
|
|
} else { |
|
2511
|
9
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2512
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. handleStartElement : Replaced bitwise AND with OR → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) b & 0xFF; |
|
2513
|
|
|
|
2514
|
11
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
5. handleStartElement : changed conditional boundary → KILLED
6. handleStartElement : negated conditional → KILLED
7. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
|
if (c <= INT_SPACE) { |
|
2515
|
11
1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
11. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (c == INT_LF) { |
|
2516
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
2517
|
11
1. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
|
} else if (c == INT_CR) { |
|
2518
|
9
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleStartElement : changed conditional boundary → KILLED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2519
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
2520
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2521
|
|
} |
|
2522
|
13
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
10. handleStartElement : negated conditional → KILLED
11. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
13. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
2523
|
8
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleStartElement : Replaced operate with second operand → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
2524
|
|
} |
|
2525
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
2526
|
22
1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
8. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
15. handleStartElement : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
16. handleStartElement : negated conditional → KILLED
17. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
20. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
21. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
22. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
|
} else if (c != INT_SPACE && c != INT_TAB) { |
|
2527
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
throwInvalidSpace(c); |
|
2528
|
|
} |
|
2529
|
11
1. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleStartElement : negated conditional → KILLED
7. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
|
} else if (c == INT_GT) { // must be '/' or '>' |
|
2530
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return finishStartElement(false); |
|
2531
|
11
1. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
|
} else if (c == INT_SLASH) { |
|
2532
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SEEN_SLASH; |
|
2533
|
|
continue main_loop; |
|
2534
|
|
} else { |
|
2535
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected space, or '>' or \"/>\""); |
|
2536
|
|
} |
|
2537
|
|
} |
|
2538
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SPACE_OR_ATTRNAME; |
|
2539
|
9
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleStartElement : changed conditional boundary → KILLED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2540
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2541
|
|
} |
|
2542
|
|
// can fall through, again: |
|
2543
|
|
|
|
2544
|
|
case STATE_SE_SPACE_OR_ATTRNAME: |
|
2545
|
|
case STATE_SE_SPACE_OR_EQ: |
|
2546
|
|
case STATE_SE_SPACE_OR_ATTRVALUE: |
|
2547
|
|
/* Common to these states is that there may be leading space(s), |
|
2548
|
|
* so let's see if any has to be skipped |
|
2549
|
|
*/ |
|
2550
|
7
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleStartElement : changed conditional boundary to IFGE → SURVIVED
3. handleStartElement : changed conditional boundary to IFLE → SURVIVED
4. handleStartElement : negated conditional → KILLED
5. handleStartElement : changed conditional boundary to IFGT → KILLED
6. handleStartElement : changed conditional boundary to IFLT → KILLED
7. handleStartElement : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { |
|
2551
|
6
1. handleStartElement : negated conditional → NO_COVERAGE
2. handleStartElement : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleStartElement : changed conditional boundary to IFGE → NO_COVERAGE
4. handleStartElement : changed conditional boundary to IFGT → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IFLE → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handlePartialCR()) { |
|
2552
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2553
|
|
} |
|
2554
|
9
1. handleStartElement : changed conditional boundary → NO_COVERAGE
2. handleStartElement : negated conditional → NO_COVERAGE
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
2555
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2556
|
|
} |
|
2557
|
|
} |
|
2558
|
9
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2559
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. handleStartElement : Replaced bitwise AND with OR → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) b & 0xFF; |
|
2560
|
|
|
|
2561
|
11
1. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
6. handleStartElement : changed conditional boundary → KILLED
7. handleStartElement : negated conditional → KILLED
8. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
|
while (c <= INT_SPACE) { |
|
2562
|
11
1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
11. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (c == INT_LF) { |
|
2563
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
2564
|
11
1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleStartElement : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
11. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
} else if (c == INT_CR) { |
|
2565
|
9
1. handleStartElement : changed conditional boundary → NO_COVERAGE
2. handleStartElement : negated conditional → NO_COVERAGE
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
2566
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_CR; |
|
2567
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2568
|
|
} |
|
2569
|
13
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleStartElement : negated conditional → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleStartElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
2570
|
8
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleStartElement : Replaced operate with second operand → NO_COVERAGE
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
2571
|
|
} |
|
2572
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
2573
|
22
1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
8. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleStartElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
15. handleStartElement : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
16. handleStartElement : negated conditional → KILLED
17. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
20. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
21. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
22. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
|
} else if (c != INT_SPACE && c != INT_TAB) { |
|
2574
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
throwInvalidSpace(c); |
|
2575
|
|
} |
|
2576
|
9
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleStartElement : changed conditional boundary → KILLED
5. handleStartElement : negated conditional → KILLED
6. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2577
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2578
|
|
} |
|
2579
|
9
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2580
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. handleStartElement : Replaced bitwise AND with OR → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) b & 0xFF; |
|
2581
|
|
} |
|
2582
|
|
|
|
2583
|
1
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
switch (_state) { |
|
2584
|
|
case STATE_SE_SPACE_OR_ATTRNAME: |
|
2585
|
11
1. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
7. handleStartElement : negated conditional → KILLED
8. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPGE → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_SLASH) { |
|
2586
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SEEN_SLASH; |
|
2587
|
|
continue main_loop; |
|
2588
|
|
} |
|
2589
|
11
1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
8. handleStartElement : negated conditional → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_GT) { |
|
2590
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return finishStartElement(false); |
|
2591
|
|
} |
|
2592
|
|
{ |
|
2593
|
|
PName n = parseNewName(b); |
|
2594
|
1
1. handleStartElement : negated conditional → KILLED
|
if (n == null) { |
|
2595
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_ATTR_NAME; |
|
2596
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2597
|
|
} |
|
2598
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SPACE_OR_EQ; |
|
2599
|
1
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → SURVIVED
|
_elemAttrName = n; |
|
2600
|
|
} |
|
2601
|
|
continue main_loop; |
|
2602
|
|
|
|
2603
|
|
case STATE_SE_SPACE_OR_EQ: |
|
2604
|
11
1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED
6. handleStartElement : negated conditional → KILLED
7. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_EQ) { |
|
2605
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected '='"); |
|
2606
|
|
} |
|
2607
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SPACE_OR_ATTRVALUE; |
|
2608
|
|
continue main_loop; |
|
2609
|
|
|
|
2610
|
|
case STATE_SE_SPACE_OR_ATTRVALUE: |
|
2611
|
22
1. handleStartElement : negated conditional → SURVIVED
2. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleStartElement : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleStartElement : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleStartElement : changed conditional boundary to IF_ICMPNE → SURVIVED
8. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleStartElement : Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED
15. handleStartElement : Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED
16. handleStartElement : negated conditional → KILLED
17. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
20. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
21. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
22. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_QUOT && b != BYTE_APOS) { |
|
2612
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " Expected a quote"); |
|
2613
|
|
} |
|
2614
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::initAttribute → KILLED
|
initAttribute(b); |
|
2615
|
|
continue main_loop; |
|
2616
|
|
default: |
|
2617
|
|
throwInternal(); |
|
2618
|
|
} |
|
2619
|
|
|
|
2620
|
|
case STATE_SE_ATTR_NAME: |
|
2621
|
|
{ |
|
2622
|
|
PName n = parsePName(); |
|
2623
|
1
1. handleStartElement : negated conditional → KILLED
|
if (n == null) { |
|
2624
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2625
|
|
} |
|
2626
|
1
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → SURVIVED
|
_elemAttrName = n; |
|
2627
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SPACE_OR_EQ; |
|
2628
|
|
} |
|
2629
|
|
break; |
|
2630
|
|
|
|
2631
|
|
case STATE_SE_ATTR_VALUE_NORMAL: |
|
2632
|
6
1. handleStartElement : changed conditional boundary to IFGT → SURVIVED
2. handleStartElement : negated conditional → KILLED
3. handleStartElement : changed conditional boundary to IFEQ → KILLED
4. handleStartElement : changed conditional boundary to IFGE → KILLED
5. handleStartElement : changed conditional boundary to IFLE → KILLED
6. handleStartElement : changed conditional boundary to IFLT → KILLED
|
if (!handleAttrValue()) { |
|
2633
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2634
|
|
} |
|
2635
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SPACE_OR_END; |
|
2636
|
|
break; |
|
2637
|
|
|
|
2638
|
|
case STATE_SE_ATTR_VALUE_NSDECL: |
|
2639
|
6
1. handleStartElement : changed conditional boundary to IFGT → SURVIVED
2. handleStartElement : negated conditional → KILLED
3. handleStartElement : changed conditional boundary to IFEQ → KILLED
4. handleStartElement : changed conditional boundary to IFGE → KILLED
5. handleStartElement : changed conditional boundary to IFLE → KILLED
6. handleStartElement : changed conditional boundary to IFLT → KILLED
|
if (!handleNsDecl()) { |
|
2640
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2641
|
|
} |
|
2642
|
6
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SPACE_OR_END; |
|
2643
|
|
break; |
|
2644
|
|
|
|
2645
|
|
case STATE_SE_SEEN_SLASH: |
|
2646
|
|
{ |
|
2647
|
9
1. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleStartElement : Replaced operate with second operand → KILLED
9. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
2648
|
11
1. handleStartElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleStartElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleStartElement : negated conditional → KILLED
7. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleStartElement : changed conditional boundary to IF_ICMPGT → KILLED
10. handleStartElement : changed conditional boundary to IF_ICMPLT → KILLED
11. handleStartElement : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_GT) { |
|
2649
|
1
1. handleStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected '>'"); |
|
2650
|
|
} |
|
2651
|
6
1. handleStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return finishStartElement(true); |
|
2652
|
|
} |
|
2653
|
|
default: |
|
2654
|
|
throwInternal(); |
|
2655
|
|
} |
|
2656
|
|
} |
|
2657
|
|
} |
|
2658
|
|
|
|
2659
|
|
private void initStartElement(PName elemName) |
|
2660
|
|
{ |
|
2661
|
|
String prefix = elemName.getPrefix(); |
|
2662
|
1
1. initStartElement : negated conditional → KILLED
|
if (prefix == null) { // element in default ns |
|
2663
|
6
1. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → SURVIVED
2. initStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. initStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. initStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemAllNsBound = true; // which need not be bound |
|
2664
|
|
} else { |
|
2665
|
|
elemName = bindName(elemName, prefix); |
|
2666
|
1
1. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → NO_COVERAGE
|
_elemAllNsBound = elemName.isBound(); |
|
2667
|
|
} |
|
2668
|
1
1. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
_tokenName = elemName; |
|
2669
|
2
1. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED
2. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED
|
_currElem = new ElementScope(elemName, _currElem); |
|
2670
|
6
1. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCount mutated with null check on object → SURVIVED
2. initStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. initStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. initStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_attrCount = 0; |
|
2671
|
6
1. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currNsCount mutated with null check on object → SURVIVED
2. initStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. initStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. initStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currNsCount = 0; |
|
2672
|
6
1. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
2. initStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. initStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. initStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemAttrPtr = 0; |
|
2673
|
6
1. initStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. initStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. initStartElement : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. initStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_SPACE_OR_END; |
|
2674
|
|
} |
|
2675
|
|
|
|
2676
|
|
private void initAttribute(byte quoteChar) |
|
2677
|
|
{ |
|
2678
|
1
1. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
_elemAttrQuote = quoteChar; |
|
2679
|
|
|
|
2680
|
1
1. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → SURVIVED
|
PName attrName = _elemAttrName; |
|
2681
|
|
String prefix = attrName.getPrefix(); |
|
2682
|
|
boolean nsDecl; |
|
2683
|
|
|
|
2684
|
1
1. initAttribute : negated conditional → KILLED
|
if (prefix == null) { // can be default ns decl: |
|
2685
|
12
1. initAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. initAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. initAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. initAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. initAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. initAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
9. initAttribute : negated conditional → KILLED
10. initAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. initAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. initAttribute : changed conditional of IF_ACMP → KILLED
|
nsDecl = (attrName.getLocalName() == "xmlns"); |
|
2686
|
|
} else { |
|
2687
|
|
// May be a namespace decl though? |
|
2688
|
2
1. initAttribute : negated conditional → KILLED
2. initAttribute : changed conditional of IF_ACMP → KILLED
|
if (prefix == "xmlns") { |
|
2689
|
5
1. initAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. initAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. initAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. initAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. initAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
nsDecl = true; |
|
2690
|
|
} else { |
|
2691
|
|
attrName = bindName(attrName, prefix); |
|
2692
|
7
1. initAttribute : negated conditional → NO_COVERAGE
2. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → NO_COVERAGE
3. initAttribute : changed conditional boundary to IFGE → NO_COVERAGE
4. initAttribute : changed conditional boundary to IFGT → NO_COVERAGE
5. initAttribute : changed conditional boundary to IFLE → NO_COVERAGE
6. initAttribute : changed conditional boundary to IFLT → NO_COVERAGE
7. initAttribute : changed conditional boundary to IFNE → NO_COVERAGE
|
if (_elemAllNsBound) { |
|
2693
|
1
1. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → NO_COVERAGE
|
_elemAllNsBound = attrName.isBound(); |
|
2694
|
|
} |
|
2695
|
5
1. initAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. initAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. initAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. initAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. initAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
nsDecl = false; |
|
2696
|
|
} |
|
2697
|
|
} |
|
2698
|
|
|
|
2699
|
6
1. initAttribute : changed conditional boundary to IFLE → SURVIVED
2. initAttribute : negated conditional → KILLED
3. initAttribute : changed conditional boundary to IFGE → KILLED
4. initAttribute : changed conditional boundary to IFGT → KILLED
5. initAttribute : changed conditional boundary to IFLT → KILLED
6. initAttribute : changed conditional boundary to IFNE → KILLED
|
if (nsDecl) { |
|
2700
|
6
1. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. initAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. initAttribute : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. initAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_ATTR_VALUE_NSDECL; |
|
2701
|
|
// Ns decls use name buffer transiently |
|
2702
|
6
1. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
2. initAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. initAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. initAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_elemNsPtr = 0; |
|
2703
|
8
1. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currNsCount mutated with null check on object → SURVIVED
2. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currNsCount mutated with null check on object → SURVIVED
3. initAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. initAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. initAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. initAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. initAttribute : Replaced operate with second operand → KILLED
8. initAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_currNsCount; |
|
2704
|
|
} else { |
|
2705
|
6
1. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. initAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. initAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. initAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. initAttribute : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
6. initAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_SE_ATTR_VALUE_NORMAL; |
|
2706
|
|
// Regular attributes are appended, shouldn't reset ptr |
|
2707
|
2
1. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED
2. initAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
_attrCollector.startNewValue(attrName, _elemAttrPtr); |
|
2708
|
|
} |
|
2709
|
|
} |
|
2710
|
|
|
|
2711
|
|
/** |
|
2712
|
|
* Method called to wrap up settings when the whole start |
|
2713
|
|
* (or empty) element has been parsed. |
|
2714
|
|
*/ |
|
2715
|
|
private int finishStartElement(boolean emptyTag) throws XMLStreamException |
|
2716
|
|
{ |
|
2717
|
1
1. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_isEmptyTag mutated with null check on object → SURVIVED
|
_isEmptyTag = emptyTag; |
|
2718
|
|
|
|
2719
|
|
// Note: this call also checks attribute uniqueness |
|
2720
|
2
1. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED
2. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
int act = _attrCollector.finishLastValue(_elemAttrPtr); |
|
2721
|
7
1. finishStartElement : changed conditional boundary → KILLED
2. finishStartElement : negated conditional → KILLED
3. finishStartElement : changed conditional boundary to IFEQ → KILLED
4. finishStartElement : changed conditional boundary to IFGT → KILLED
5. finishStartElement : changed conditional boundary to IFLE → KILLED
6. finishStartElement : changed conditional boundary to IFLT → KILLED
7. finishStartElement : changed conditional boundary to IFNE → KILLED
|
if (act < 0) { // error, dup attr indicated by -1 |
|
2722
|
1
1. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
act = _attrCollector.getCount(); // let's get correct count |
|
2723
|
2
1. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
2. finishStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
reportInputProblem(_attrCollector.getErrorMsg()); |
|
2724
|
|
} |
|
2725
|
1
1. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCount mutated with null check on object → SURVIVED
|
_attrCount = act; |
|
2726
|
8
1. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
2. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
3. finishStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishStartElement : Replaced operate with second operand → KILLED
8. finishStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_depth; |
|
2727
|
|
|
|
2728
|
|
/* Was there any prefix that wasn't bound prior to use? |
|
2729
|
|
* That's legal, assuming declaration was found later on... |
|
2730
|
|
* let's check |
|
2731
|
|
*/ |
|
2732
|
7
1. finishStartElement : negated conditional → SURVIVED
2. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → SURVIVED
3. finishStartElement : changed conditional boundary to IFEQ → SURVIVED
4. finishStartElement : changed conditional boundary to IFGE → SURVIVED
5. finishStartElement : changed conditional boundary to IFGT → SURVIVED
6. finishStartElement : changed conditional boundary to IFLE → SURVIVED
7. finishStartElement : changed conditional boundary to IFLT → SURVIVED
|
if (!_elemAllNsBound) { |
|
2733
|
7
1. finishStartElement : negated conditional → NO_COVERAGE
2. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
3. finishStartElement : changed conditional boundary to IFEQ → NO_COVERAGE
4. finishStartElement : changed conditional boundary to IFGE → NO_COVERAGE
5. finishStartElement : changed conditional boundary to IFGT → NO_COVERAGE
6. finishStartElement : changed conditional boundary to IFLE → NO_COVERAGE
7. finishStartElement : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!_tokenName.isBound()) { // element itself unbound |
|
2734
|
7
1. finishStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
7. finishStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnboundPrefix → NO_COVERAGE
|
reportUnboundPrefix(_tokenName, false); |
|
2735
|
|
} |
|
2736
|
18
1. finishStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishStartElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishStartElement : changed conditional boundary → NO_COVERAGE
6. finishStartElement : Changed increment from 1 to -1 → NO_COVERAGE
7. finishStartElement : negated conditional → NO_COVERAGE
8. finishStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCount mutated with null check on object → NO_COVERAGE
10. finishStartElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
11. finishStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. finishStartElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. finishStartElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
14. finishStartElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
15. finishStartElement : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
16. finishStartElement : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
17. finishStartElement : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
18. finishStartElement : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
for (int i = 0, len = _attrCount; i < len; ++i) { |
|
2737
|
1
1. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
PName attrName = _attrCollector.getName(i); |
|
2738
|
6
1. finishStartElement : negated conditional → NO_COVERAGE
2. finishStartElement : changed conditional boundary to IFEQ → NO_COVERAGE
3. finishStartElement : changed conditional boundary to IFGE → NO_COVERAGE
4. finishStartElement : changed conditional boundary to IFGT → NO_COVERAGE
5. finishStartElement : changed conditional boundary to IFLE → NO_COVERAGE
6. finishStartElement : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!attrName.isBound()) { |
|
2739
|
6
1. finishStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. finishStartElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnboundPrefix → NO_COVERAGE
|
reportUnboundPrefix(attrName, true); |
|
2740
|
|
} |
|
2741
|
|
} |
|
2742
|
|
} |
|
2743
|
|
|
|
2744
|
7
1. finishStartElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. finishStartElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. finishStartElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. finishStartElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. finishStartElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. finishStartElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. finishStartElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_currToken = START_ELEMENT); |
|
2745
|
|
} |
|
2746
|
|
|
|
2747
|
|
private int handleEndElementStart() throws XMLStreamException |
|
2748
|
|
{ |
|
2749
|
8
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
3. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleEndElementStart : Replaced operate with second operand → KILLED
8. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
--_depth; |
|
2750
|
2
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
_tokenName = _currElem.getName(); |
|
2751
|
|
|
|
2752
|
|
/* Ok, perhaps we can do this quickly? This works, if we |
|
2753
|
|
* are expected to have the full name (plus one more byte |
|
2754
|
|
* to indicate name end) in the current buffer: |
|
2755
|
|
*/ |
|
2756
|
1
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
int size = _tokenName.sizeInQuads(); |
|
2757
|
22
1. handleEndElementStart : changed conditional boundary → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEndElementStart : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleEndElementStart : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEndElementStart : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. handleEndElementStart : Replaced operate with second operand → KILLED
14. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
15. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
16. handleEndElementStart : Replaced operate with second operand → KILLED
17. handleEndElementStart : Replaced Shift Left with Shift Right → KILLED
18. handleEndElementStart : negated conditional → KILLED
19. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleEndElementStart : changed conditional boundary to IF_ICMPLT → KILLED
22. handleEndElementStart : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < ((size << 2) + 1)) { // may need to load more |
|
2758
|
6
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_nextEvent = END_ELEMENT; |
|
2759
|
6
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_DEFAULT; |
|
2760
|
8
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
3. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
4. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
8. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadCount = _currQuad = _currQuadBytes = 0; |
|
2761
|
|
/* No, need to take it slow. Can not yet give up, though, |
|
2762
|
|
* without reading remainder of the buffer |
|
2763
|
|
*/ |
|
2764
|
1
1. handleEndElementStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleEndElement(); |
|
2765
|
|
} |
|
2766
|
1
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
ByteBuffer buf = _inputBuffer; |
|
2767
|
|
|
|
2768
|
|
// First all full chunks of 4 bytes (if any) |
|
2769
|
5
1. handleEndElementStart : Changed increment from -1 to 1 → KILLED
2. handleEndElementStart : UOI Mutator: Added unary decrement -1 -> -2 to local variable → KILLED
3. handleEndElementStart : UOI Mutator: Added unary increment -1 -> 0 to local variable → KILLED
4. handleEndElementStart : UOI Mutator: Removed unary increment of local variable → KILLED
5. handleEndElementStart : UOI Mutator: Reversed increment of local variable → KILLED
|
--size; |
|
2770
|
17
1. handleEndElementStart : Changed increment from 1 to -1 → SURVIVED
2. handleEndElementStart : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEndElementStart : UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED
4. handleEndElementStart : UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED
5. handleEndElementStart : UOI Mutator: Removed unary increment of local variable → SURVIVED
6. handleEndElementStart : UOI Mutator: Reversed increment of local variable → SURVIVED
7. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
11. handleEndElementStart : changed conditional boundary → KILLED
12. handleEndElementStart : negated conditional → KILLED
13. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handleEndElementStart : changed conditional boundary to IF_ICMPGT → KILLED
15. handleEndElementStart : changed conditional boundary to IF_ICMPGT → KILLED
16. handleEndElementStart : changed conditional boundary to IF_ICMPLT → KILLED
17. handleEndElementStart : changed conditional boundary to IF_ICMPNE → KILLED
|
for (int qix = 0; qix < size; ++qix) { |
|
2771
|
1
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int ptr = _inputPtr; |
|
2772
|
12
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 24 with 1 → NO_COVERAGE
8. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. handleEndElementStart : Replaced operate with second operand → NO_COVERAGE
10. handleEndElementStart : Replaced Shift Left with Shift Right → NO_COVERAGE
11. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
int q = (buf.get(ptr) << 24) |
|
2773
|
19
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
11. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
12. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
13. handleEndElementStart : Replaced operate with second operand → NO_COVERAGE
14. handleEndElementStart : Replaced bitwise AND with OR → NO_COVERAGE
15. handleEndElementStart : Replaced Shift Left with Shift Right → NO_COVERAGE
16. handleEndElementStart : Replaced bitwise OR with AND → NO_COVERAGE
17. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| ((buf.get(ptr+1) & 0xFF) << 16) |
|
2774
|
19
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
11. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
12. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
13. handleEndElementStart : Replaced operate with second operand → NO_COVERAGE
14. handleEndElementStart : Replaced bitwise AND with OR → NO_COVERAGE
15. handleEndElementStart : Replaced Shift Left with Shift Right → NO_COVERAGE
16. handleEndElementStart : Replaced bitwise OR with AND → NO_COVERAGE
17. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| ((buf.get(ptr+2) & 0xFF) << 8) |
|
2775
|
7
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. handleEndElementStart : Replaced bitwise AND with OR → NO_COVERAGE
6. handleEndElementStart : Replaced bitwise OR with AND → NO_COVERAGE
7. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| ((buf.get(ptr+3) & 0xFF)) |
|
2776
|
|
; |
|
2777
|
8
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE
5. handleEndElementStart : Replaced operate with second operand → NO_COVERAGE
6. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr += 4; |
|
2778
|
|
// match? |
|
2779
|
7
1. handleEndElementStart : negated conditional → NO_COVERAGE
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
3. handleEndElementStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
4. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
5. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. handleEndElementStart : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
7. handleEndElementStart : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (q != _tokenName.getQuad(qix)) { |
|
2780
|
2
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
2. handleEndElementStart : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpectedEndTag → NO_COVERAGE
|
reportUnexpectedEndTag(_tokenName.getPrefixedName()); |
|
2781
|
|
} |
|
2782
|
|
} |
|
2783
|
|
|
|
2784
|
|
/* After which we can deal with the last entry: it's bit |
|
2785
|
|
* tricky as we don't actually fully know byte length... |
|
2786
|
|
*/ |
|
2787
|
1
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
int lastQ = _tokenName.getQuad(size); |
|
2788
|
14
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. handleEndElementStart : Replaced operate with second operand → KILLED
11. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
12. handleEndElementStart : Replaced bitwise AND with OR → KILLED
13. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int q = buf.get(_inputPtr++) & 0xFF; |
|
2789
|
6
1. handleEndElementStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEndElementStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleEndElementStart : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleEndElementStart : negated conditional → KILLED
5. handleEndElementStart : changed conditional boundary to IF_ICMPLT → KILLED
6. handleEndElementStart : changed conditional boundary to IF_ICMPNE → KILLED
|
if (q != lastQ) { // need second byte? |
|
2790
|
21
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
13. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
14. handleEndElementStart : Replaced operate with second operand → KILLED
15. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
16. handleEndElementStart : Replaced Shift Left with Shift Right → KILLED
17. handleEndElementStart : Replaced bitwise AND with OR → KILLED
18. handleEndElementStart : Replaced bitwise OR with AND → KILLED
19. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | (buf.get(_inputPtr++) & 0xFF); |
|
2791
|
6
1. handleEndElementStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEndElementStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleEndElementStart : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleEndElementStart : negated conditional → KILLED
5. handleEndElementStart : changed conditional boundary to IF_ICMPLT → KILLED
6. handleEndElementStart : changed conditional boundary to IF_ICMPNE → KILLED
|
if (q != lastQ) { // need third byte? |
|
2792
|
21
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
13. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
14. handleEndElementStart : Replaced operate with second operand → KILLED
15. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
16. handleEndElementStart : Replaced Shift Left with Shift Right → KILLED
17. handleEndElementStart : Replaced bitwise AND with OR → KILLED
18. handleEndElementStart : Replaced bitwise OR with AND → KILLED
19. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | (buf.get(_inputPtr++) & 0xFF); |
|
2793
|
6
1. handleEndElementStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEndElementStart : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleEndElementStart : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleEndElementStart : negated conditional → KILLED
5. handleEndElementStart : changed conditional boundary to IF_ICMPLT → KILLED
6. handleEndElementStart : changed conditional boundary to IF_ICMPNE → KILLED
|
if (q != lastQ) { // need full 4 bytes? |
|
2794
|
21
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
13. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
14. handleEndElementStart : Replaced operate with second operand → KILLED
15. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
16. handleEndElementStart : Replaced Shift Left with Shift Right → KILLED
17. handleEndElementStart : Replaced bitwise AND with OR → KILLED
18. handleEndElementStart : Replaced bitwise OR with AND → KILLED
19. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | (buf.get(_inputPtr++) & 0xFF); |
|
2795
|
6
1. handleEndElementStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEndElementStart : negated conditional → KILLED
3. handleEndElementStart : changed conditional boundary to IF_ICMPGT → KILLED
4. handleEndElementStart : changed conditional boundary to IF_ICMPGT → KILLED
5. handleEndElementStart : changed conditional boundary to IF_ICMPLT → KILLED
6. handleEndElementStart : changed conditional boundary to IF_ICMPNE → KILLED
|
if (q != lastQ) { // still no match? failure! |
|
2796
|
2
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
2. handleEndElementStart : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpectedEndTag → NO_COVERAGE
|
reportUnexpectedEndTag(_tokenName.getPrefixedName()); |
|
2797
|
|
} |
|
2798
|
|
} |
|
2799
|
|
} |
|
2800
|
|
} |
|
2801
|
|
// Trailing space? |
|
2802
|
15
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. handleEndElementStart : Replaced operate with second operand → KILLED
12. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. handleEndElementStart : Replaced bitwise AND with OR → KILLED
14. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int i2 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
2803
|
11
1. handleEndElementStart : changed conditional boundary → SURVIVED
2. handleEndElementStart : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleEndElementStart : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
8. handleEndElementStart : negated conditional → KILLED
9. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleEndElementStart : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleEndElementStart : changed conditional boundary to IF_ICMPLT → KILLED
|
while (i2 <= INT_SPACE) { |
|
2804
|
11
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleEndElementStart : negated conditional → NO_COVERAGE
6. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElementStart : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEndElementStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEndElementStart : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (i2 == INT_LF) { |
|
2805
|
1
1. handleEndElementStart : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
2806
|
11
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. handleEndElementStart : negated conditional → NO_COVERAGE
6. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElementStart : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEndElementStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEndElementStart : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (i2 == INT_CR) { |
|
2807
|
9
1. handleEndElementStart : changed conditional boundary → NO_COVERAGE
2. handleEndElementStart : negated conditional → NO_COVERAGE
3. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEndElementStart : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEndElementStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEndElementStart : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
2808
|
6
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_CR; |
|
2809
|
6
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
_nextEvent = END_ELEMENT; |
|
2810
|
6
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
_state = STATE_EE_NEED_GT; |
|
2811
|
6
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElementStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2812
|
|
} |
|
2813
|
13
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleEndElementStart : negated conditional → NO_COVERAGE
6. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEndElementStart : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleEndElementStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleEndElementStart : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
2814
|
8
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEndElementStart : Replaced operate with second operand → NO_COVERAGE
6. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
2815
|
|
} |
|
2816
|
1
1. handleEndElementStart : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
2817
|
22
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
8. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
9. handleEndElementStart : negated conditional → NO_COVERAGE
10. handleEndElementStart : negated conditional → NO_COVERAGE
11. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEndElementStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
14. handleEndElementStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. handleEndElementStart : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
20. handleEndElementStart : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. handleEndElementStart : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
22. handleEndElementStart : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
} else if (i2 != INT_SPACE && i2 != INT_TAB) { |
|
2818
|
1
1. handleEndElementStart : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
throwInvalidSpace(i2); |
|
2819
|
|
} |
|
2820
|
9
1. handleEndElementStart : changed conditional boundary → NO_COVERAGE
2. handleEndElementStart : negated conditional → NO_COVERAGE
3. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEndElementStart : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEndElementStart : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEndElementStart : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEndElementStart : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
2821
|
6
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
_nextEvent = END_ELEMENT; |
|
2822
|
6
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
_state = STATE_EE_NEED_GT; |
|
2823
|
6
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElementStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2824
|
|
} |
|
2825
|
15
1. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleEndElementStart : Replaced operate with second operand → NO_COVERAGE
9. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleEndElementStart : Replaced bitwise AND with OR → NO_COVERAGE
11. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
i2 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
2826
|
|
} |
|
2827
|
11
1. handleEndElementStart : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleEndElementStart : negated conditional → KILLED
7. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleEndElementStart : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElementStart : changed conditional boundary to IF_ICMPGT → KILLED
10. handleEndElementStart : changed conditional boundary to IF_ICMPLT → KILLED
11. handleEndElementStart : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i2 != INT_GT) { |
|
2828
|
1
1. handleEndElementStart : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError((byte)i2), " expected space or closing '>'"); |
|
2829
|
|
} |
|
2830
|
7
1. handleEndElementStart : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleEndElementStart : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElementStart : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElementStart : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElementStart : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleEndElementStart : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleEndElementStart : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_currToken = END_ELEMENT); |
|
2831
|
|
} |
|
2832
|
|
|
|
2833
|
|
/** |
|
2834
|
|
* This method is "slow" version of above, used when name of |
|
2835
|
|
* the end element can split input buffer boundary |
|
2836
|
|
*/ |
|
2837
|
|
private int handleEndElement() throws XMLStreamException |
|
2838
|
|
{ |
|
2839
|
7
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleEndElement : changed conditional boundary to IFGT → SURVIVED
3. handleEndElement : negated conditional → KILLED
4. handleEndElement : changed conditional boundary to IFEQ → KILLED
5. handleEndElement : changed conditional boundary to IFGE → KILLED
6. handleEndElement : changed conditional boundary to IFLE → KILLED
7. handleEndElement : changed conditional boundary to IFLT → KILLED
|
if (_state == STATE_DEFAULT) { // parsing name |
|
2840
|
1
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
final PName elemName = _tokenName; |
|
2841
|
6
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleEndElement : Replaced operate with second operand → KILLED
6. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
final int quadSize = elemName.sizeInQuads() - 1; // need to ignore last for now |
|
2842
|
16
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
3. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
4. handleEndElement : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
9. handleEndElement : Replaced operate with second operand → KILLED
10. handleEndElement : changed conditional boundary → KILLED
11. handleEndElement : negated conditional → KILLED
12. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
14. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
15. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
16. handleEndElement : changed conditional boundary to IF_ICMPNE → KILLED
|
for (; _quadCount < quadSize; ++_quadCount) { // first, full quads |
|
2843
|
21
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
3. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
4. handleEndElement : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleEndElement : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
12. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
13. handleEndElement : Replaced operate with second operand → KILLED
14. handleEndElement : changed conditional boundary → KILLED
15. handleEndElement : negated conditional → KILLED
16. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
19. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
20. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
21. handleEndElement : changed conditional boundary to IF_ICMPNE → KILLED
|
for (; _currQuadBytes < 4; ++_currQuadBytes) { |
|
2844
|
9
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEndElement : changed conditional boundary → KILLED
5. handleEndElement : negated conditional → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEndElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2845
|
6
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEndElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2846
|
|
} |
|
2847
|
24
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
3. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
5. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
6. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. handleEndElement : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
16. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
17. handleEndElement : Replaced operate with second operand → KILLED
18. handleEndElement : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
19. handleEndElement : Replaced Shift Left with Shift Right → KILLED
20. handleEndElement : Replaced bitwise AND with OR → KILLED
21. handleEndElement : Replaced bitwise OR with AND → KILLED
22. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
23. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
24. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuad = (_currQuad << 8) | (_inputBuffer.get(_inputPtr++) & 0xFF); |
|
2848
|
|
} |
|
2849
|
|
// match? |
|
2850
|
8
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEndElement : negated conditional → KILLED
5. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
7. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_currQuad != elemName.getQuad(_quadCount)) { |
|
2851
|
1
1. handleEndElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpectedEndTag → NO_COVERAGE
|
reportUnexpectedEndTag(elemName.getPrefixedName()); |
|
2852
|
|
} |
|
2853
|
7
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
3. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleEndElement : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
7. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuad = _currQuadBytes = 0; |
|
2854
|
|
} |
|
2855
|
|
// So far so good! Now need to check the last quad: |
|
2856
|
|
int lastQ = elemName.getLastQuad(); |
|
2857
|
|
|
|
2858
|
|
while (true) { |
|
2859
|
9
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEndElement : changed conditional boundary → KILLED
5. handleEndElement : negated conditional → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEndElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2860
|
6
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEndElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2861
|
|
} |
|
2862
|
7
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
2. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. handleEndElement : Replaced Shift Left with Shift Right → KILLED
7. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int q = (_currQuad << 8); |
|
2863
|
16
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. handleEndElement : Replaced operate with second operand → KILLED
12. handleEndElement : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. handleEndElement : Replaced bitwise AND with OR → KILLED
14. handleEndElement : Replaced bitwise OR with AND → KILLED
15. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q |= (_inputBuffer.get(_inputPtr++) & 0xFF); |
|
2864
|
1
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
2865
|
6
1. handleEndElement : changed conditional boundary to IF_ICMPLT → SURVIVED
2. handleEndElement : negated conditional → KILLED
3. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
4. handleEndElement : changed conditional boundary to IF_ICMPGE → KILLED
5. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (q == lastQ) { // match |
|
2866
|
|
break; |
|
2867
|
|
} |
|
2868
|
21
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
3. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. handleEndElement : Replaced operate with second operand → KILLED
11. handleEndElement : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
12. handleEndElement : changed conditional boundary → KILLED
13. handleEndElement : negated conditional → KILLED
14. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
17. handleEndElement : changed conditional boundary to IF_ICMPGE → KILLED
18. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
19. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
20. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
21. handleEndElement : changed conditional boundary to IF_ICMPNE → KILLED
|
if (++_currQuadBytes > 3) { // no match, error |
|
2869
|
1
1. handleEndElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpectedEndTag → NO_COVERAGE
|
reportUnexpectedEndTag(elemName.getPrefixedName()); |
|
2870
|
|
break; // never gets here |
|
2871
|
|
} |
|
2872
|
|
} |
|
2873
|
|
// Bueno. How about optional space, '>'? |
|
2874
|
6
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_state = STATE_EE_NEED_GT; |
|
2875
|
12
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
2. handleEndElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleEndElement : negated conditional → KILLED
8. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
10. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
11. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
12. handleEndElement : changed conditional boundary to IF_ICMPNE → KILLED
|
} else if (_state != STATE_EE_NEED_GT) { |
|
2876
|
|
throwInternal(); |
|
2877
|
|
} |
|
2878
|
|
|
|
2879
|
7
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleEndElement : changed conditional boundary to IFGE → SURVIVED
3. handleEndElement : changed conditional boundary to IFLE → SURVIVED
4. handleEndElement : negated conditional → KILLED
5. handleEndElement : changed conditional boundary to IFGT → KILLED
6. handleEndElement : changed conditional boundary to IFLT → KILLED
7. handleEndElement : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { |
|
2880
|
6
1. handleEndElement : negated conditional → NO_COVERAGE
2. handleEndElement : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleEndElement : changed conditional boundary to IFGE → NO_COVERAGE
4. handleEndElement : changed conditional boundary to IFGT → NO_COVERAGE
5. handleEndElement : changed conditional boundary to IFLE → NO_COVERAGE
6. handleEndElement : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handlePartialCR()) { |
|
2881
|
6
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2882
|
|
} |
|
2883
|
|
// it's ignorable ws |
|
2884
|
|
} |
|
2885
|
|
|
|
2886
|
|
// Trailing space? |
|
2887
|
|
while (true) { |
|
2888
|
9
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEndElement : changed conditional boundary → KILLED
5. handleEndElement : negated conditional → KILLED
6. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEndElement : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2889
|
6
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEndElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2890
|
|
} |
|
2891
|
15
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. handleEndElement : Replaced operate with second operand → KILLED
12. handleEndElement : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. handleEndElement : Replaced bitwise AND with OR → KILLED
14. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int i2 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
2892
|
11
1. handleEndElement : changed conditional boundary → SURVIVED
2. handleEndElement : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handleEndElement : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEndElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
8. handleEndElement : negated conditional → KILLED
9. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleEndElement : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
|
if (i2 <= INT_SPACE) { |
|
2893
|
11
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleEndElement : negated conditional → NO_COVERAGE
6. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEndElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEndElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (i2 == INT_LF) { |
|
2894
|
1
1. handleEndElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
2895
|
11
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE
5. handleEndElement : negated conditional → NO_COVERAGE
6. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEndElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEndElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (i2 == INT_CR) { |
|
2896
|
9
1. handleEndElement : changed conditional boundary → NO_COVERAGE
2. handleEndElement : negated conditional → NO_COVERAGE
3. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleEndElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleEndElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleEndElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
2897
|
6
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_CR; |
|
2898
|
6
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE
5. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEndElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return EVENT_INCOMPLETE; |
|
2899
|
|
} |
|
2900
|
13
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleEndElement : negated conditional → NO_COVERAGE
6. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleEndElement : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleEndElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleEndElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
2901
|
8
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEndElement : Replaced operate with second operand → NO_COVERAGE
6. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
2902
|
|
} |
|
2903
|
1
1. handleEndElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
2904
|
22
1. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEndElement : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
8. handleEndElement : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
9. handleEndElement : negated conditional → NO_COVERAGE
10. handleEndElement : negated conditional → NO_COVERAGE
11. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEndElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
14. handleEndElement : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
15. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
16. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEndElement : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. handleEndElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
20. handleEndElement : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. handleEndElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
22. handleEndElement : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
} else if (i2 != INT_SPACE && i2 != INT_TAB) { |
|
2905
|
1
1. handleEndElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
throwInvalidSpace(i2); |
|
2906
|
|
} |
|
2907
|
|
continue; |
|
2908
|
|
} |
|
2909
|
|
|
|
2910
|
11
1. handleEndElement : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
6. handleEndElement : negated conditional → KILLED
7. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEndElement : changed conditional boundary to IF_ICMPGT → KILLED
10. handleEndElement : changed conditional boundary to IF_ICMPLT → KILLED
11. handleEndElement : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i2 != INT_GT) { |
|
2911
|
1
1. handleEndElement : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError((byte)i2), " expected space or closing '>'"); |
|
2912
|
|
} |
|
2913
|
|
// Hah, done! |
|
2914
|
7
1. handleEndElement : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. handleEndElement : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEndElement : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEndElement : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEndElement : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleEndElement : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleEndElement : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return (_currToken = END_ELEMENT); |
|
2915
|
|
} |
|
2916
|
|
} |
|
2917
|
|
|
|
2918
|
|
/* |
|
2919
|
|
/********************************************************************** |
|
2920
|
|
/* Implementation of parsing API, character events |
|
2921
|
|
/********************************************************************** |
|
2922
|
|
*/ |
|
2923
|
|
|
|
2924
|
|
@Override |
|
2925
|
|
protected final int startCharacters(byte b) throws XMLStreamException |
|
2926
|
|
{ |
|
2927
|
|
dummy_loop: |
|
2928
|
|
do { // dummy loop, to allow break |
|
2929
|
6
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. startCharacters : Replaced bitwise AND with OR → KILLED
6. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c = (int) b & 0xFF; |
|
2930
|
2
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
switch (_charTypes.TEXT_CHARS[c]) { |
|
2931
|
|
case XmlCharTypes.CT_INVALID: |
|
2932
|
|
c = handleInvalidXmlChar(c); |
|
2933
|
|
case XmlCharTypes.CT_WS_CR: |
|
2934
|
|
/* Note: can not have pending input when this method |
|
2935
|
|
* is called. No need to check that (could assert) |
|
2936
|
|
*/ |
|
2937
|
9
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startCharacters : changed conditional boundary → KILLED
5. startCharacters : negated conditional → KILLED
6. startCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
7. startCharacters : changed conditional boundary to IF_ICMPGE → KILLED
8. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // no more input available |
|
2938
|
6
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharacters : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
2939
|
6
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2940
|
|
} |
|
2941
|
13
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. startCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. startCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
9. startCharacters : negated conditional → KILLED
10. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. startCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
12. startCharacters : changed conditional boundary to IF_ICMPGE → KILLED
13. startCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
2942
|
8
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. startCharacters : Replaced operate with second operand → KILLED
8. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
2943
|
|
} |
|
2944
|
1
1. startCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
2945
|
5
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
5. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = INT_LF; |
|
2946
|
|
break; |
|
2947
|
|
case XmlCharTypes.CT_WS_LF: |
|
2948
|
1
1. startCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
2949
|
|
break; |
|
2950
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
2951
|
9
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
4. startCharacters : changed conditional boundary → KILLED
5. startCharacters : negated conditional → KILLED
6. startCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
7. startCharacters : changed conditional boundary to IF_ICMPGE → KILLED
8. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
2952
|
1
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
2953
|
6
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2954
|
|
} |
|
2955
|
|
c = decodeUtf8_2(c); |
|
2956
|
|
break; |
|
2957
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
2958
|
15
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. startCharacters : Replaced operate with second operand → KILLED
7. startCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. startCharacters : changed conditional boundary → KILLED
9. startCharacters : negated conditional → KILLED
10. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. startCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
12. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
13. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
14. startCharacters : changed conditional boundary to IF_ICMPLT → KILLED
15. startCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 2) { |
|
2959
|
10
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. startCharacters : changed conditional boundary → KILLED
5. startCharacters : negated conditional → KILLED
6. startCharacters : changed conditional boundary to IF_ICMPGE → KILLED
7. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. startCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
2960
|
15
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharacters : Replaced operate with second operand → KILLED
12. startCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharacters : Replaced bitwise AND with OR → KILLED
14. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
2961
|
7
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. startCharacters : Replaced Shift Left with Shift Right → KILLED
6. startCharacters : Replaced bitwise OR with AND → KILLED
7. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
2962
|
|
} |
|
2963
|
1
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
2964
|
6
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2965
|
|
} |
|
2966
|
|
c = decodeUtf8_3(c); |
|
2967
|
|
break; |
|
2968
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
2969
|
15
1. startCharacters : changed conditional boundary → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. startCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharacters : Replaced operate with second operand → KILLED
10. startCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
11. startCharacters : negated conditional → KILLED
12. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. startCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
14. startCharacters : changed conditional boundary to IF_ICMPLT → KILLED
15. startCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 3) { |
|
2970
|
10
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. startCharacters : changed conditional boundary → KILLED
5. startCharacters : negated conditional → KILLED
6. startCharacters : changed conditional boundary to IF_ICMPGE → KILLED
7. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. startCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
2971
|
15
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharacters : Replaced operate with second operand → KILLED
12. startCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharacters : Replaced bitwise AND with OR → KILLED
14. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
2972
|
7
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. startCharacters : Replaced Shift Left with Shift Right → KILLED
6. startCharacters : Replaced bitwise OR with AND → KILLED
7. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
2973
|
10
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. startCharacters : changed conditional boundary → KILLED
5. startCharacters : negated conditional → KILLED
6. startCharacters : changed conditional boundary to IF_ICMPGE → KILLED
7. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. startCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. startCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. startCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
2974
|
15
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. startCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. startCharacters : Replaced operate with second operand → KILLED
12. startCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. startCharacters : Replaced bitwise AND with OR → KILLED
14. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
2975
|
7
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
5. startCharacters : Replaced Shift Left with Shift Right → KILLED
6. startCharacters : Replaced bitwise OR with AND → KILLED
7. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 16); |
|
2976
|
|
} |
|
2977
|
|
} |
|
2978
|
1
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
2979
|
6
1. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. startCharacters : Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED
5. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. startCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return EVENT_INCOMPLETE; |
|
2980
|
|
} |
|
2981
|
|
c = decodeUtf8_4(c); |
|
2982
|
|
// Need a surrogate pair, have to call from here: |
|
2983
|
2
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. startCharacters : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithSurrogate → KILLED
|
_textBuilder.resetWithSurrogate(c); |
|
2984
|
|
break dummy_loop; |
|
2985
|
|
|
|
2986
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
2987
|
1
1. startCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
2988
|
|
break; |
|
2989
|
|
case XmlCharTypes.CT_LT: // should never get here |
|
2990
|
|
case XmlCharTypes.CT_AMP: // - "" - |
|
2991
|
|
throwInternal(); |
|
2992
|
|
break; |
|
2993
|
|
case XmlCharTypes.CT_RBRACKET: // ']]>'? |
|
2994
|
|
// !!! TBI: check for "]]>" |
|
2995
|
|
|
|
2996
|
|
default: |
|
2997
|
|
break; |
|
2998
|
|
} |
|
2999
|
|
|
|
3000
|
2
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. startCharacters : removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
_textBuilder.resetWithChar((char) c); |
|
3001
|
|
} while (false); // dummy loop, for break |
|
3002
|
|
|
|
3003
|
14
1. startCharacters : negated conditional → SURVIVED
2. startCharacters : negated conditional → SURVIVED
3. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgCoalescing mutated with null check on object → SURVIVED
4. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
5. startCharacters : changed conditional boundary to IFEQ → SURVIVED
6. startCharacters : changed conditional boundary to IFGE → SURVIVED
7. startCharacters : changed conditional boundary to IFGE → SURVIVED
8. startCharacters : changed conditional boundary to IFGT → SURVIVED
9. startCharacters : changed conditional boundary to IFGT → SURVIVED
10. startCharacters : changed conditional boundary to IFLE → SURVIVED
11. startCharacters : changed conditional boundary to IFLE → SURVIVED
12. startCharacters : changed conditional boundary to IFLT → SURVIVED
13. startCharacters : changed conditional boundary to IFLT → SURVIVED
14. startCharacters : changed conditional boundary to IFNE → SURVIVED
|
if (_cfgCoalescing && !_cfgLazyParsing) { |
|
3004
|
|
// In eager coalescing mode, must read it all |
|
3005
|
1
1. startCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return finishCharactersCoalescing(); |
|
3006
|
|
} |
|
3007
|
6
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharacters : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currToken = CHARACTERS; |
|
3008
|
7
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED
2. startCharacters : changed conditional boundary to IFLE → SURVIVED
3. startCharacters : changed conditional boundary to IFLT → SURVIVED
4. startCharacters : negated conditional → KILLED
5. startCharacters : changed conditional boundary to IFGE → KILLED
6. startCharacters : changed conditional boundary to IFGT → KILLED
7. startCharacters : changed conditional boundary to IFNE → KILLED
|
if (_cfgLazyParsing) { |
|
3009
|
6
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
2. startCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. startCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. startCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. startCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. startCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_tokenIncomplete = true; |
|
3010
|
|
} else { |
|
3011
|
1
1. startCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
finishCharacters(); |
|
3012
|
|
} |
|
3013
|
2
1. startCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
2. startCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _currToken; |
|
3014
|
|
} |
|
3015
|
|
|
|
3016
|
|
/** |
|
3017
|
|
* This method only gets called in non-coalescing mode; and if so, |
|
3018
|
|
* needs to parse as many characters of the current text segment |
|
3019
|
|
* from the current input block as possible. |
|
3020
|
|
*/ |
|
3021
|
|
@Override |
|
3022
|
|
protected final void finishCharacters() throws XMLStreamException |
|
3023
|
|
{ |
|
3024
|
|
/* Now: there should not usually be any pending input (as it's |
|
3025
|
|
* handled when CHARACTERS segment started, and this method |
|
3026
|
|
* only gets called exactly once)... but we may want to |
|
3027
|
|
* revisit this subject when (if) coalescing mode is to be |
|
3028
|
|
* tackled. |
|
3029
|
|
*/ |
|
3030
|
7
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. finishCharacters : changed conditional boundary to IFGE → SURVIVED
3. finishCharacters : changed conditional boundary to IFLE → SURVIVED
4. finishCharacters : negated conditional → KILLED
5. finishCharacters : changed conditional boundary to IFGT → KILLED
6. finishCharacters : changed conditional boundary to IFLT → KILLED
7. finishCharacters : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { |
|
3031
|
|
// !!! TBI: needs to be changed for coalescing mode |
|
3032
|
|
throwInternal(); |
|
3033
|
|
} |
|
3034
|
|
|
|
3035
|
2
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
final int[] TYPES = _charTypes.TEXT_CHARS; |
|
3036
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
final ByteBuffer inputBuffer = _inputBuffer; |
|
3037
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
char[] outputBuffer = _textBuilder.getBufferWithoutReset(); |
|
3038
|
|
// Should have just one code point (one or two chars). Assert? |
|
3039
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
int outPtr = _textBuilder.getCurrentLength(); |
|
3040
|
|
|
|
3041
|
|
main_loop: |
|
3042
|
|
while (true) { |
|
3043
|
|
int c; |
|
3044
|
|
// Then the tight ASCII non-funny-char loop: |
|
3045
|
|
ascii_loop: |
|
3046
|
|
while (true) { |
|
3047
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
int ptr = _inputPtr; |
|
3048
|
8
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
5. finishCharacters : changed conditional boundary → TIMED_OUT
6. finishCharacters : negated conditional → TIMED_OUT
7. finishCharacters : changed conditional boundary to IF_ICMPEQ → TIMED_OUT
8. finishCharacters : changed conditional boundary to IF_ICMPGE → TIMED_OUT
|
if (ptr >= _inputEnd) { |
|
3049
|
|
break main_loop; |
|
3050
|
|
} |
|
3051
|
7
1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishCharacters : negated conditional → KILLED
4. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
5. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outPtr >= outputBuffer.length) { |
|
3052
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
3053
|
5
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
3054
|
|
} |
|
3055
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
int max = _inputEnd; |
|
3056
|
|
{ |
|
3057
|
2
1. finishCharacters : Replaced operate with second operand → KILLED
2. finishCharacters : Replaced operate with second operand → KILLED
|
int max2 = ptr + (outputBuffer.length - outPtr); |
|
3058
|
7
1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
5. finishCharacters : negated conditional → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
if (max2 < max) { |
|
3059
|
|
max = max2; |
|
3060
|
|
} |
|
3061
|
|
} |
|
3062
|
7
1. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. finishCharacters : negated conditional → TIMED_OUT
3. finishCharacters : changed conditional boundary to IF_ICMPLT → TIMED_OUT
4. finishCharacters : changed conditional boundary to IF_ICMPNE → TIMED_OUT
5. finishCharacters : changed conditional boundary → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
while (ptr < max) { |
|
3063
|
11
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. finishCharacters : Changed increment from 1 to -1 → KILLED
6. finishCharacters : Replaced bitwise AND with OR → KILLED
7. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
9. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
10. finishCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
11. finishCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
c = (int) inputBuffer.get(ptr++) & 0xFF; |
|
3064
|
6
1. finishCharacters : changed conditional boundary to IFLE → SURVIVED
2. finishCharacters : changed conditional boundary to IFLT → SURVIVED
3. finishCharacters : negated conditional → KILLED
4. finishCharacters : changed conditional boundary to IFGE → KILLED
5. finishCharacters : changed conditional boundary to IFGT → KILLED
6. finishCharacters : changed conditional boundary to IFNE → KILLED
|
if (TYPES[c] != 0) { |
|
3065
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
_inputPtr = ptr; |
|
3066
|
|
break ascii_loop; |
|
3067
|
|
} |
|
3068
|
5
1. finishCharacters : Changed increment from 1 to -1 → KILLED
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
3069
|
|
} |
|
3070
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
_inputPtr = ptr; |
|
3071
|
|
} |
|
3072
|
|
// And then fallback for funny chars / UTF-8 multibytes: |
|
3073
|
|
switch (TYPES[c]) { |
|
3074
|
|
case XmlCharTypes.CT_INVALID: |
|
3075
|
|
c = handleInvalidXmlChar(c); |
|
3076
|
|
case XmlCharTypes.CT_WS_CR: |
|
3077
|
|
{ |
|
3078
|
9
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
6. finishCharacters : changed conditional boundary → KILLED
7. finishCharacters : negated conditional → KILLED
8. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
9. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3079
|
6
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
3080
|
|
break main_loop; |
|
3081
|
|
} |
|
3082
|
12
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
8. finishCharacters : negated conditional → KILLED
9. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
11. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
12. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
if (inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
3083
|
8
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishCharacters : Replaced operate with second operand → KILLED
8. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
3084
|
|
} |
|
3085
|
1
1. finishCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
3086
|
|
} |
|
3087
|
5
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = INT_LF; |
|
3088
|
|
break; |
|
3089
|
|
case XmlCharTypes.CT_WS_LF: |
|
3090
|
1
1. finishCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
3091
|
|
break; |
|
3092
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
3093
|
9
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
6. finishCharacters : changed conditional boundary → KILLED
7. finishCharacters : negated conditional → KILLED
8. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
9. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3094
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
3095
|
|
break main_loop; |
|
3096
|
|
} |
|
3097
|
|
c = decodeUtf8_2(c); |
|
3098
|
|
break; |
|
3099
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
3100
|
15
1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
7. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. finishCharacters : Replaced operate with second operand → KILLED
11. finishCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
12. finishCharacters : negated conditional → KILLED
13. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
15. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 2) { |
|
3101
|
10
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
5. finishCharacters : changed conditional boundary → KILLED
6. finishCharacters : negated conditional → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
3102
|
15
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. finishCharacters : Replaced operate with second operand → KILLED
12. finishCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. finishCharacters : Replaced bitwise AND with OR → KILLED
14. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3103
|
7
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. finishCharacters : Replaced Shift Left with Shift Right → KILLED
6. finishCharacters : Replaced bitwise OR with AND → KILLED
7. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
3104
|
|
} |
|
3105
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
3106
|
|
break main_loop; |
|
3107
|
|
} |
|
3108
|
|
c = decodeUtf8_3(c); |
|
3109
|
|
break; |
|
3110
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
3111
|
15
1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
7. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. finishCharacters : Replaced operate with second operand → KILLED
11. finishCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
12. finishCharacters : negated conditional → KILLED
13. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
15. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 3) { |
|
3112
|
10
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
5. finishCharacters : changed conditional boundary → KILLED
6. finishCharacters : negated conditional → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
3113
|
15
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. finishCharacters : Replaced operate with second operand → KILLED
12. finishCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. finishCharacters : Replaced bitwise AND with OR → KILLED
14. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3114
|
7
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. finishCharacters : Replaced Shift Left with Shift Right → KILLED
6. finishCharacters : Replaced bitwise OR with AND → KILLED
7. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
3115
|
10
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
5. finishCharacters : changed conditional boundary → KILLED
6. finishCharacters : negated conditional → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
3116
|
15
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. finishCharacters : Replaced operate with second operand → NO_COVERAGE
9. finishCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. finishCharacters : Replaced bitwise AND with OR → NO_COVERAGE
11. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3117
|
7
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. finishCharacters : Replaced Shift Left with Shift Right → NO_COVERAGE
6. finishCharacters : Replaced bitwise OR with AND → NO_COVERAGE
7. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 16); |
|
3118
|
|
} |
|
3119
|
|
} |
|
3120
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
3121
|
|
break main_loop; |
|
3122
|
|
} |
|
3123
|
|
c = decodeUtf8_4(c); |
|
3124
|
|
// Let's add first part right away: |
|
3125
|
17
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
9. finishCharacters : Changed increment from 1 to -1 → KILLED
10. finishCharacters : Replaced Shift Right with Shift Left → KILLED
11. finishCharacters : Replaced bitwise OR with AND → KILLED
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
15. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
16. finishCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
17. finishCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) (0xD800 | (c >> 10)); |
|
3126
|
7
1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
3. finishCharacters : negated conditional → KILLED
4. finishCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
5. finishCharacters : changed conditional boundary to IF_ICMPGE → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (outPtr >= outputBuffer.length) { |
|
3127
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
3128
|
5
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
3129
|
|
} |
|
3130
|
12
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → KILLED
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → KILLED
9. finishCharacters : Replaced bitwise AND with OR → KILLED
10. finishCharacters : Replaced bitwise OR with AND → KILLED
11. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = 0xDC00 | (c & 0x3FF); |
|
3131
|
|
// And let the other char output down below |
|
3132
|
|
break; |
|
3133
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
3134
|
1
1. finishCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
3135
|
|
case XmlCharTypes.CT_LT: |
|
3136
|
8
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishCharacters : Replaced operate with second operand → KILLED
8. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
--_inputPtr; |
|
3137
|
|
break main_loop; |
|
3138
|
|
case XmlCharTypes.CT_AMP: |
|
3139
|
|
c = handleEntityInCharacters(); |
|
3140
|
6
1. finishCharacters : changed conditional boundary to IFGT → SURVIVED
2. finishCharacters : negated conditional → KILLED
3. finishCharacters : changed conditional boundary to IFEQ → KILLED
4. finishCharacters : changed conditional boundary to IFGE → KILLED
5. finishCharacters : changed conditional boundary to IFLE → KILLED
6. finishCharacters : changed conditional boundary to IFLT → KILLED
|
if (c == 0) { // not a succesfully expanded char entity |
|
3141
|
|
// _inputPtr set by entity expansion method |
|
3142
|
8
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. finishCharacters : Replaced operate with second operand → KILLED
8. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
--_inputPtr; |
|
3143
|
|
break main_loop; |
|
3144
|
|
} |
|
3145
|
|
// Ok; does it need a surrogate though? (over 16 bits) |
|
3146
|
12
1. finishCharacters : changed conditional boundary to IFGE → SURVIVED
2. finishCharacters : changed conditional boundary to IFLE → SURVIVED
3. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
7. finishCharacters : Replaced Shift Right with Shift Left → KILLED
8. finishCharacters : negated conditional → KILLED
9. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishCharacters : changed conditional boundary to IFGT → KILLED
11. finishCharacters : changed conditional boundary to IFLT → KILLED
12. finishCharacters : changed conditional boundary to IFNE → KILLED
|
if ((c >> 16) != 0) { |
|
3147
|
6
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. finishCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c -= 0x10000; |
|
3148
|
17
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
9. finishCharacters : Changed increment from 1 to -1 → NO_COVERAGE
10. finishCharacters : Replaced Shift Right with Shift Left → NO_COVERAGE
11. finishCharacters : Replaced bitwise OR with AND → NO_COVERAGE
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
15. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
16. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
17. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
outputBuffer[outPtr++] = (char) (0xD800 | (c >> 10)); |
|
3149
|
|
// Need to ensure room for one more char |
|
3150
|
7
1. finishCharacters : changed conditional boundary → NO_COVERAGE
2. finishCharacters : negated conditional → NO_COVERAGE
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (outPtr >= outputBuffer.length) { |
|
3151
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
3152
|
5
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
3153
|
|
} |
|
3154
|
12
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. finishCharacters : Replaced bitwise AND with OR → NO_COVERAGE
10. finishCharacters : Replaced bitwise OR with AND → NO_COVERAGE
11. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
3155
|
|
} |
|
3156
|
|
break; |
|
3157
|
|
case XmlCharTypes.CT_RBRACKET: // ']]>'? |
|
3158
|
|
/* 09-Mar-2007, tatus: This will not give 100% coverage, |
|
3159
|
|
* for it may be split across input buffer boundary. |
|
3160
|
|
* For now this will have to suffice though. |
|
3161
|
|
*/ |
|
3162
|
|
{ |
|
3163
|
|
// Let's then just count number of brackets -- |
|
3164
|
|
// in case they are not followed by '>' |
|
3165
|
5
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int count = 1; |
|
3166
|
5
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = BYTE_NULL; |
|
3167
|
9
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. finishCharacters : changed conditional boundary → KILLED
5. finishCharacters : negated conditional → KILLED
6. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. finishCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
9. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
while (_inputPtr < _inputEnd) { |
|
3168
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
b = inputBuffer.get(_inputPtr); |
|
3169
|
11
1. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
2. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. finishCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
8. finishCharacters : negated conditional → KILLED
9. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. finishCharacters : changed conditional boundary to IF_ICMPLT → KILLED
11. finishCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_RBRACKET) { |
|
3170
|
|
break; |
|
3171
|
|
} |
|
3172
|
8
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. finishCharacters : Replaced operate with second operand → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; // to skip past bracket |
|
3173
|
5
1. finishCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
++count; |
|
3174
|
|
} |
|
3175
|
24
1. finishCharacters : changed conditional boundary → SURVIVED
2. finishCharacters : negated conditional → SURVIVED
3. finishCharacters : negated conditional → SURVIVED
4. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. finishCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
7. finishCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
8. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
9. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
10. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
11. finishCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
12. finishCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
13. finishCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
14. finishCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
15. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
16. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
17. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
18. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
19. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
20. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
21. finishCharacters : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
22. finishCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
23. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
24. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (b == BYTE_GT && count > 1) { |
|
3176
|
1
1. finishCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportIllegalCDataEnd → NO_COVERAGE
|
reportIllegalCDataEnd(); |
|
3177
|
|
} |
|
3178
|
|
// Nope. Need to output all brackets, then; except |
|
3179
|
|
// for one that can be left for normal output |
|
3180
|
12
1. finishCharacters : changed conditional boundary to IFEQ → SURVIVED
2. finishCharacters : changed conditional boundary to IFGE → SURVIVED
3. finishCharacters : UOI Mutator: Added unary decrement -1 -> -2 to local variable → SURVIVED
4. finishCharacters : negated conditional → MEMORY_ERROR
5. finishCharacters : changed conditional boundary to IFGT → MEMORY_ERROR
6. finishCharacters : UOI Mutator: Added unary increment -1 -> 0 to local variable → MEMORY_ERROR
7. finishCharacters : UOI Mutator: Removed unary increment of local variable → MEMORY_ERROR
8. finishCharacters : UOI Mutator: Reversed increment of local variable → MEMORY_ERROR
9. finishCharacters : Changed increment from -1 to 1 → TIMED_OUT
10. finishCharacters : changed conditional boundary → KILLED
11. finishCharacters : changed conditional boundary to IFLT → KILLED
12. finishCharacters : changed conditional boundary to IFNE → KILLED
|
while (--count > 0) { |
|
3181
|
10
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. finishCharacters : Changed increment from 1 to -1 → NO_COVERAGE
6. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
8. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
9. finishCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
10. finishCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
outputBuffer[outPtr++] = ']'; |
|
3182
|
|
// Need to ensure room for one more char |
|
3183
|
7
1. finishCharacters : changed conditional boundary → NO_COVERAGE
2. finishCharacters : negated conditional → NO_COVERAGE
3. finishCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. finishCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. finishCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. finishCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (outPtr >= outputBuffer.length) { |
|
3184
|
1
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
outputBuffer = _textBuilder.finishCurrentSegment(); |
|
3185
|
5
1. finishCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. finishCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. finishCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. finishCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. finishCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
outPtr = 0; |
|
3186
|
|
} |
|
3187
|
|
} |
|
3188
|
|
} |
|
3189
|
|
// Can just output the first ']' along normal output |
|
3190
|
|
break; |
|
3191
|
|
|
|
3192
|
|
// default: |
|
3193
|
|
// Other types are not important here... |
|
3194
|
|
} |
|
3195
|
|
// We know there's room for one more: |
|
3196
|
5
1. finishCharacters : Changed increment from 1 to -1 → KILLED
2. finishCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
3. finishCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
4. finishCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
5. finishCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
outputBuffer[outPtr++] = (char) c; |
|
3197
|
|
} |
|
3198
|
2
1. finishCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. finishCharacters : removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
_textBuilder.setCurrentLength(outPtr); |
|
3199
|
|
} |
|
3200
|
|
|
|
3201
|
|
/** |
|
3202
|
|
* Method called to handle entity encountered inside |
|
3203
|
|
* CHARACTERS segment, when trying to complete a non-coalescing text segment. |
|
3204
|
|
*<p> |
|
3205
|
|
* NOTE: unlike with generic parsing of named entities, where trailing semicolon |
|
3206
|
|
* needs to be left in place, here we should just process it right away. |
|
3207
|
|
* |
|
3208
|
|
* @return Expanded (character) entity, if positive number; 0 if incomplete. |
|
3209
|
|
*/ |
|
3210
|
|
protected int handleEntityInCharacters() throws XMLStreamException |
|
3211
|
|
{ |
|
3212
|
|
/* Thing that simplifies processing here is that handling |
|
3213
|
|
* is pretty much optional: if there isn't enough data, we |
|
3214
|
|
* just return 0 and are done with it. |
|
3215
|
|
* |
|
3216
|
|
* Also: we need at least 3 more characters for any character entity |
|
3217
|
|
*/ |
|
3218
|
1
1. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
int ptr = _inputPtr; |
|
3219
|
13
1. handleEntityInCharacters : changed conditional boundary → SURVIVED
2. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
9. handleEntityInCharacters : Replaced operate with second operand → KILLED
10. handleEntityInCharacters : negated conditional → KILLED
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
13. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
if ((ptr + 3) <= _inputEnd) { |
|
3220
|
6
1. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInCharacters : Changed increment from 1 to -1 → KILLED
3. handleEntityInCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
4. handleEntityInCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
5. handleEntityInCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
6. handleEntityInCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
byte b = _inputBuffer.get(ptr++); |
|
3221
|
11
1. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED
8. handleEntityInCharacters : negated conditional → KILLED
9. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_HASH) { // numeric character entity |
|
3222
|
12
1. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
5. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED
9. handleEntityInCharacters : negated conditional → KILLED
10. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
12. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputBuffer.get(ptr) == BYTE_x) { |
|
3223
|
7
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleEntityInCharacters : Replaced operate with second operand → KILLED
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleHexEntityInCharacters(ptr+1); |
|
3224
|
|
} |
|
3225
|
1
1. handleEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return handleDecEntityInCharacters(ptr); |
|
3226
|
|
} |
|
3227
|
|
// general entity; maybe one of pre-defined ones |
|
3228
|
11
1. handleEntityInCharacters : negated conditional → SURVIVED
2. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (b == BYTE_a) { // amp or apos? |
|
3229
|
6
1. handleEntityInCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
3. handleEntityInCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
4. handleEntityInCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
5. handleEntityInCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
6. handleEntityInCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
b = _inputBuffer.get(ptr++); |
|
3230
|
11
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 109 with 1 → NO_COVERAGE
5. handleEntityInCharacters : negated conditional → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (b == BYTE_m) { |
|
3231
|
15
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInCharacters : changed conditional boundary → NO_COVERAGE
7. handleEntityInCharacters : negated conditional → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((ptr + 1) < _inputPtr |
|
3232
|
18
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. handleEntityInCharacters : negated conditional → NO_COVERAGE
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr) == BYTE_p |
|
3233
|
11
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleEntityInCharacters : negated conditional → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+1) == BYTE_SEMICOLON) { |
|
3234
|
7
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr + 2; |
|
3235
|
6
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 38 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_AMP; |
|
3236
|
|
} |
|
3237
|
11
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE
5. handleEntityInCharacters : negated conditional → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (b == BYTE_p) { |
|
3238
|
15
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInCharacters : changed conditional boundary → NO_COVERAGE
7. handleEntityInCharacters : negated conditional → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((ptr + 2) < _inputPtr |
|
3239
|
18
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. handleEntityInCharacters : negated conditional → NO_COVERAGE
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr) == BYTE_o |
|
3240
|
18
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 115 with 1 → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
9. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. handleEntityInCharacters : negated conditional → NO_COVERAGE
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+1) == BYTE_s |
|
3241
|
11
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleEntityInCharacters : negated conditional → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+2) == BYTE_SEMICOLON) { |
|
3242
|
7
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr + 3; |
|
3243
|
6
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_APOS; |
|
3244
|
|
} |
|
3245
|
|
} |
|
3246
|
11
1. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 103 with 1 → KILLED
8. handleEntityInCharacters : negated conditional → KILLED
9. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (b == BYTE_g) { // gt? |
|
3247
|
19
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. handleEntityInCharacters : negated conditional → NO_COVERAGE
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
17. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_inputBuffer.get(ptr) == BYTE_t |
|
3248
|
11
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleEntityInCharacters : negated conditional → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+1) == BYTE_SEMICOLON) { |
|
3249
|
7
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr + 2; |
|
3250
|
6
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_GT; |
|
3251
|
|
} |
|
3252
|
11
1. handleEntityInCharacters : negated conditional → SURVIVED
2. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 108 with 1 → KILLED
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
} else if (b == BYTE_l) { // lt? |
|
3253
|
19
1. handleEntityInCharacters : negated conditional → SURVIVED
2. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
3. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
4. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
9. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 116 with 1 → KILLED
16. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
17. handleEntityInCharacters : Replaced operate with second operand → KILLED
18. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (_inputBuffer.get(ptr) == BYTE_t |
|
3254
|
11
1. handleEntityInCharacters : negated conditional → SURVIVED
2. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
&& _inputBuffer.get(ptr+1) == BYTE_SEMICOLON) { |
|
3255
|
7
1. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. handleEntityInCharacters : Replaced operate with second operand → KILLED
7. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_inputPtr = ptr + 2; |
|
3256
|
6
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
5. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return INT_LT; |
|
3257
|
|
} |
|
3258
|
11
1. handleEntityInCharacters : negated conditional → SURVIVED
2. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
7. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 113 with 1 → KILLED
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
} else if (b == BYTE_q) { // quot? |
|
3259
|
15
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInCharacters : changed conditional boundary → NO_COVERAGE
7. handleEntityInCharacters : negated conditional → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((ptr + 3) < _inputPtr |
|
3260
|
18
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 117 with 1 → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. handleEntityInCharacters : negated conditional → NO_COVERAGE
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr)== BYTE_u |
|
3261
|
18
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
9. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. handleEntityInCharacters : negated conditional → NO_COVERAGE
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+1) == BYTE_o |
|
3262
|
18
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE
8. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
9. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. handleEntityInCharacters : negated conditional → NO_COVERAGE
11. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+2) == BYTE_t |
|
3263
|
11
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleEntityInCharacters : negated conditional → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+3) == BYTE_SEMICOLON) { |
|
3264
|
7
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr + 4; |
|
3265
|
6
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE
5. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_APOS; |
|
3266
|
|
} |
|
3267
|
|
} |
|
3268
|
|
} |
|
3269
|
|
// couldn't handle: |
|
3270
|
6
1. handleEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
3271
|
|
} |
|
3272
|
|
|
|
3273
|
|
protected int handleDecEntityInCharacters(int ptr) throws XMLStreamException |
|
3274
|
|
{ |
|
3275
|
6
1. handleDecEntityInCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. handleDecEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
3. handleDecEntityInCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
4. handleDecEntityInCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
5. handleDecEntityInCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
6. handleDecEntityInCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
byte b = _inputBuffer.get(ptr++); |
|
3276
|
1
1. handleDecEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
|
final int end = _inputEnd; |
|
3277
|
5
1. handleDecEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDecEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDecEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDecEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleDecEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
int value = 0; |
|
3278
|
|
do { |
|
3279
|
|
int ch = (int) b; |
|
3280
|
23
1. handleDecEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDecEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleDecEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleDecEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleDecEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleDecEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleDecEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 57 with 1 → NO_COVERAGE
8. handleDecEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE
9. handleDecEntityInCharacters : changed conditional boundary → NO_COVERAGE
10. handleDecEntityInCharacters : changed conditional boundary → NO_COVERAGE
11. handleDecEntityInCharacters : negated conditional → NO_COVERAGE
12. handleDecEntityInCharacters : negated conditional → NO_COVERAGE
13. handleDecEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleDecEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
17. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
21. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
23. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (ch > INT_9 || ch < INT_0) { |
|
3281
|
1
1. handleDecEntityInCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected a digit (0 - 9) for character entity"); |
|
3282
|
|
} |
|
3283
|
13
1. handleDecEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDecEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleDecEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleDecEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleDecEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleDecEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleDecEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
8. handleDecEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
9. handleDecEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE
10. handleDecEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
11. handleDecEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
12. handleDecEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleDecEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
value = (value * 10) + (ch - INT_0); |
|
3284
|
13
1. handleDecEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDecEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDecEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDecEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE
5. handleDecEntityInCharacters : changed conditional boundary → NO_COVERAGE
6. handleDecEntityInCharacters : negated conditional → NO_COVERAGE
7. handleDecEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (value > MAX_UNICODE_CHAR) { // Overflow? |
|
3285
|
1
1. handleDecEntityInCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
reportEntityOverflow(); |
|
3286
|
|
} |
|
3287
|
7
1. handleDecEntityInCharacters : changed conditional boundary → NO_COVERAGE
2. handleDecEntityInCharacters : negated conditional → NO_COVERAGE
3. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
4. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
5. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
6. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (ptr >= end) { |
|
3288
|
6
1. handleDecEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDecEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDecEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDecEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleDecEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleDecEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return 0; |
|
3289
|
|
} |
|
3290
|
6
1. handleDecEntityInCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. handleDecEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
3. handleDecEntityInCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
4. handleDecEntityInCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
5. handleDecEntityInCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
6. handleDecEntityInCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
b = _inputBuffer.get(ptr++); |
|
3291
|
11
1. handleDecEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleDecEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleDecEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleDecEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. handleDecEntityInCharacters : negated conditional → NO_COVERAGE
6. handleDecEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleDecEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} while (b != BYTE_SEMICOLON); |
|
3292
|
1
1. handleDecEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr; |
|
3293
|
1
1. handleDecEntityInCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyXmlChar → NO_COVERAGE
|
verifyXmlChar(value); |
|
3294
|
1
1. handleDecEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return value; |
|
3295
|
|
} |
|
3296
|
|
|
|
3297
|
|
protected int handleHexEntityInCharacters(int ptr) throws XMLStreamException |
|
3298
|
|
{ |
|
3299
|
6
1. handleHexEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleHexEntityInCharacters : Changed increment from 1 to -1 → KILLED
3. handleHexEntityInCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
4. handleHexEntityInCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
5. handleHexEntityInCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
6. handleHexEntityInCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
byte b = _inputBuffer.get(ptr++); |
|
3300
|
1
1. handleHexEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
final int end = _inputEnd; |
|
3301
|
5
1. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int value = 0; |
|
3302
|
|
do { |
|
3303
|
|
int ch = (int) b; |
|
3304
|
23
1. handleHexEntityInCharacters : changed conditional boundary → SURVIVED
2. handleHexEntityInCharacters : changed conditional boundary → SURVIVED
3. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
5. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED
12. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
13. handleHexEntityInCharacters : negated conditional → KILLED
14. handleHexEntityInCharacters : negated conditional → KILLED
15. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
16. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
18. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
19. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → KILLED
20. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → KILLED
21. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
22. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPNE → KILLED
23. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (ch <= INT_9 && ch >= INT_0) { |
|
3305
|
5
1. handleHexEntityInCharacters : Changed increment from -48 to 48 → KILLED
2. handleHexEntityInCharacters : UOI Mutator: Added unary decrement -48 -> -49 to local variable → KILLED
3. handleHexEntityInCharacters : UOI Mutator: Added unary increment -48 -> -47 to local variable → KILLED
4. handleHexEntityInCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
5. handleHexEntityInCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
ch -= INT_0; |
|
3306
|
23
1. handleHexEntityInCharacters : changed conditional boundary → SURVIVED
2. handleHexEntityInCharacters : changed conditional boundary → SURVIVED
3. handleHexEntityInCharacters : negated conditional → SURVIVED
4. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
11. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
15. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 70 with 1 → KILLED
18. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
19. handleHexEntityInCharacters : negated conditional → KILLED
20. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
22. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
23. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (ch <= INT_F && ch >= INT_A) { |
|
3307
|
12
1. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
8. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 65 with 1 → NO_COVERAGE
9. handleHexEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. handleHexEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
11. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = 10 + (ch - INT_A); |
|
3308
|
23
1. handleHexEntityInCharacters : changed conditional boundary → SURVIVED
2. handleHexEntityInCharacters : changed conditional boundary → SURVIVED
3. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 102 with 1 → KILLED
13. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED
14. handleHexEntityInCharacters : negated conditional → KILLED
15. handleHexEntityInCharacters : negated conditional → KILLED
16. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
19. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → KILLED
20. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → KILLED
21. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
22. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPNE → KILLED
23. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
} else if (ch <= INT_f && ch >= INT_a) { |
|
3309
|
12
1. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
8. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED
9. handleHexEntityInCharacters : Replaced operate with second operand → KILLED
10. handleHexEntityInCharacters : Replaced operate with second operand → KILLED
11. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = 10 + (ch - INT_a); |
|
3310
|
|
} else { |
|
3311
|
1
1. handleHexEntityInCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected a hex digit (0-9a-fA-F) for character entity"); |
|
3312
|
|
} |
|
3313
|
7
1. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
5. handleHexEntityInCharacters : Replaced operate with second operand → KILLED
6. handleHexEntityInCharacters : Replaced Shift Left with Shift Right → KILLED
7. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
value = (value << 4) + ch; |
|
3314
|
13
1. handleHexEntityInCharacters : changed conditional boundary → SURVIVED
2. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
3. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED
8. handleHexEntityInCharacters : negated conditional → KILLED
9. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
12. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → KILLED
13. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (value > MAX_UNICODE_CHAR) { // Overflow? |
|
3315
|
1
1. handleHexEntityInCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
reportEntityOverflow(); |
|
3316
|
|
} |
|
3317
|
7
1. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
2. handleHexEntityInCharacters : changed conditional boundary → KILLED
3. handleHexEntityInCharacters : negated conditional → KILLED
4. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
5. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
6. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (ptr >= end) { |
|
3318
|
6
1. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleHexEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
3319
|
|
} |
|
3320
|
6
1. handleHexEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleHexEntityInCharacters : Changed increment from 1 to -1 → KILLED
3. handleHexEntityInCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
4. handleHexEntityInCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
5. handleHexEntityInCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
6. handleHexEntityInCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
b = _inputBuffer.get(ptr++); |
|
3321
|
11
1. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleHexEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleHexEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleHexEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleHexEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
7. handleHexEntityInCharacters : negated conditional → KILLED
8. handleHexEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
11. handleHexEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
} while (b != BYTE_SEMICOLON); |
|
3322
|
1
1. handleHexEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
_inputPtr = ptr; |
|
3323
|
1
1. handleHexEntityInCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyXmlChar → SURVIVED
|
verifyXmlChar(value); |
|
3324
|
1
1. handleHexEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return value; |
|
3325
|
|
} |
|
3326
|
|
|
|
3327
|
|
/** |
|
3328
|
|
* Method called to handle split multi-byte character, by decoding |
|
3329
|
|
* it and appending to the text buffer, if possible. |
|
3330
|
|
* |
|
3331
|
|
* @return True, if split character was completely handled; false |
|
3332
|
|
* if not |
|
3333
|
|
*/ |
|
3334
|
|
private final boolean handleAndAppendPending() throws XMLStreamException |
|
3335
|
|
{ |
|
3336
|
|
// First, need to have at least one more byte: |
|
3337
|
9
1. handleAndAppendPending : changed conditional boundary → SURVIVED
2. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleAndAppendPending : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleAndAppendPending : negated conditional → KILLED
6. handleAndAppendPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAndAppendPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3338
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAndAppendPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3339
|
|
} |
|
3340
|
1
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
int c = _pendingInput; |
|
3341
|
6
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
3342
|
|
|
|
3343
|
|
// Possible \r\n linefeed? |
|
3344
|
7
1. handleAndAppendPending : changed conditional boundary → SURVIVED
2. handleAndAppendPending : changed conditional boundary to IFGT → SURVIVED
3. handleAndAppendPending : negated conditional → KILLED
4. handleAndAppendPending : changed conditional boundary to IFEQ → KILLED
5. handleAndAppendPending : changed conditional boundary to IFLE → KILLED
6. handleAndAppendPending : changed conditional boundary to IFLT → KILLED
7. handleAndAppendPending : changed conditional boundary to IFNE → KILLED
|
if (c < 0) { // markers are all negative |
|
3345
|
11
1. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleAndAppendPending : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
8. handleAndAppendPending : negated conditional → KILLED
9. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleAndAppendPending : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleAndAppendPending : changed conditional boundary to IF_ICMPGE → KILLED
|
if (c == PENDING_STATE_CR) { |
|
3346
|
13
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
9. handleAndAppendPending : negated conditional → KILLED
10. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. handleAndAppendPending : changed conditional boundary to IF_ICMPEQ → KILLED
12. handleAndAppendPending : changed conditional boundary to IF_ICMPGE → KILLED
13. handleAndAppendPending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
3347
|
8
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleAndAppendPending : Replaced operate with second operand → KILLED
8. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
3348
|
|
} |
|
3349
|
1
1. handleAndAppendPending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
3350
|
7
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
6. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleAndAppendPending : removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
_textBuilder.append(CHAR_LF); |
|
3351
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAndAppendPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
3352
|
|
} |
|
3353
|
|
throwInternal(); |
|
3354
|
|
} |
|
3355
|
|
|
|
3356
|
|
// Nah, a multi-byte UTF-8 char: |
|
3357
|
|
// Let's just re-test the first pending byte (in LSB): |
|
3358
|
8
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
3. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. handleAndAppendPending : Replaced bitwise AND with OR → KILLED
8. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
switch (_charTypes.TEXT_CHARS[c & 0xFF]) { |
|
3359
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
3360
|
|
// Easy: must have just one byte, did get another one: |
|
3361
|
2
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleAndAppendPending : removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
_textBuilder.append((char) decodeUtf8_2(c)); |
|
3362
|
|
break; |
|
3363
|
|
|
|
3364
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
3365
|
|
{ |
|
3366
|
|
// Ok... so do we have one or two pending bytes? |
|
3367
|
15
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. handleAndAppendPending : Replaced operate with second operand → KILLED
12. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. handleAndAppendPending : Replaced bitwise AND with OR → KILLED
14. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int next = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3368
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. handleAndAppendPending : Replaced Shift Right with Shift Left → KILLED
6. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c2 = (c >> 8); |
|
3369
|
6
1. handleAndAppendPending : changed conditional boundary to IFGT → SURVIVED
2. handleAndAppendPending : negated conditional → KILLED
3. handleAndAppendPending : changed conditional boundary to IFEQ → KILLED
4. handleAndAppendPending : changed conditional boundary to IFGE → KILLED
5. handleAndAppendPending : changed conditional boundary to IFLE → KILLED
6. handleAndAppendPending : changed conditional boundary to IFLT → KILLED
|
if (c2 == 0) { // just one; need two more |
|
3370
|
9
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleAndAppendPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleAndAppendPending : changed conditional boundary → KILLED
5. handleAndAppendPending : negated conditional → KILLED
6. handleAndAppendPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAndAppendPending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // but got only one |
|
3371
|
8
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. handleAndAppendPending : Replaced Shift Left with Shift Right → KILLED
7. handleAndAppendPending : Replaced bitwise OR with AND → KILLED
8. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 8); |
|
3372
|
6
1. handleAndAppendPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return false; |
|
3373
|
|
} |
|
3374
|
15
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. handleAndAppendPending : Replaced operate with second operand → KILLED
12. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. handleAndAppendPending : Replaced bitwise AND with OR → KILLED
14. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3375
|
|
c = decodeUtf8_3(c, next, c3); |
|
3376
|
|
} else { // had two, got one, bueno: |
|
3377
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. handleAndAppendPending : Replaced bitwise AND with OR → KILLED
6. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = decodeUtf8_3((c & 0xFF), c2, next); |
|
3378
|
|
} |
|
3379
|
2
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
2. handleAndAppendPending : removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
_textBuilder.append((char) c); |
|
3380
|
|
} |
|
3381
|
|
break; |
|
3382
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
3383
|
|
{ |
|
3384
|
15
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAndAppendPending : Replaced operate with second operand → NO_COVERAGE
9. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAndAppendPending : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int next = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3385
|
|
// Only had one? |
|
3386
|
12
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleAndAppendPending : Replaced Shift Right with Shift Left → NO_COVERAGE
6. handleAndAppendPending : negated conditional → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleAndAppendPending : changed conditional boundary to IFEQ → NO_COVERAGE
9. handleAndAppendPending : changed conditional boundary to IFGE → NO_COVERAGE
10. handleAndAppendPending : changed conditional boundary to IFGT → NO_COVERAGE
11. handleAndAppendPending : changed conditional boundary to IFLE → NO_COVERAGE
12. handleAndAppendPending : changed conditional boundary to IFLT → NO_COVERAGE
|
if ((c >> 8) == 0) { // ok, so need 3 more |
|
3387
|
9
1. handleAndAppendPending : changed conditional boundary → NO_COVERAGE
2. handleAndAppendPending : negated conditional → NO_COVERAGE
3. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleAndAppendPending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAndAppendPending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAndAppendPending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { // just have 1 |
|
3388
|
8
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleAndAppendPending : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleAndAppendPending : Replaced bitwise OR with AND → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c | (next << 8); |
|
3389
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAndAppendPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3390
|
|
} |
|
3391
|
15
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAndAppendPending : Replaced operate with second operand → NO_COVERAGE
9. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAndAppendPending : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int c2 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3392
|
9
1. handleAndAppendPending : changed conditional boundary → NO_COVERAGE
2. handleAndAppendPending : negated conditional → NO_COVERAGE
3. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleAndAppendPending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAndAppendPending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAndAppendPending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { // almost, got 2 |
|
3393
|
15
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
8. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
9. handleAndAppendPending : Replaced Shift Left with Shift Right → NO_COVERAGE
10. handleAndAppendPending : Replaced bitwise OR with AND → NO_COVERAGE
11. handleAndAppendPending : Replaced Shift Left with Shift Right → NO_COVERAGE
12. handleAndAppendPending : Replaced bitwise OR with AND → NO_COVERAGE
13. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c | (next << 8) | (c2 << 16); |
|
3394
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAndAppendPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3395
|
|
} |
|
3396
|
15
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAndAppendPending : Replaced operate with second operand → NO_COVERAGE
9. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAndAppendPending : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3397
|
|
c = decodeUtf8_4(c, next, c2, c3); |
|
3398
|
|
} else { // had two or three |
|
3399
|
12
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
8. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
9. handleAndAppendPending : Replaced Shift Right with Shift Left → NO_COVERAGE
10. handleAndAppendPending : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
int c2 = (c >> 8) & 0xFF; |
|
3400
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleAndAppendPending : Replaced Shift Right with Shift Left → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
int c3 = (c >> 16); |
|
3401
|
|
|
|
3402
|
6
1. handleAndAppendPending : negated conditional → NO_COVERAGE
2. handleAndAppendPending : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleAndAppendPending : changed conditional boundary to IFGE → NO_COVERAGE
4. handleAndAppendPending : changed conditional boundary to IFGT → NO_COVERAGE
5. handleAndAppendPending : changed conditional boundary to IFLE → NO_COVERAGE
6. handleAndAppendPending : changed conditional boundary to IFLT → NO_COVERAGE
|
if (c3 == 0) { // just two |
|
3403
|
9
1. handleAndAppendPending : changed conditional boundary → NO_COVERAGE
2. handleAndAppendPending : negated conditional → NO_COVERAGE
3. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleAndAppendPending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAndAppendPending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAndAppendPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAndAppendPending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { // one short |
|
3404
|
8
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleAndAppendPending : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleAndAppendPending : Replaced bitwise OR with AND → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c | (next << 16); |
|
3405
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAndAppendPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3406
|
|
} |
|
3407
|
15
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAndAppendPending : Replaced operate with second operand → NO_COVERAGE
9. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAndAppendPending : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3408
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. handleAndAppendPending : Replaced bitwise AND with OR → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = decodeUtf8_4((c & 0xFF), c2, next, c3); |
|
3409
|
|
} else { // had three, got last |
|
3410
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. handleAndAppendPending : Replaced bitwise AND with OR → NO_COVERAGE
6. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = decodeUtf8_4((c & 0xFF), c2, c3, next); |
|
3411
|
|
} |
|
3412
|
|
} |
|
3413
|
|
} |
|
3414
|
|
// Need a surrogate pair, have to call from here: |
|
3415
|
2
1. handleAndAppendPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
2. handleAndAppendPending : removed call to com/fasterxml/aalto/util/TextBuilder::appendSurrogate → NO_COVERAGE
|
_textBuilder.appendSurrogate(c); |
|
3416
|
|
break; |
|
3417
|
|
default: // should never occur: |
|
3418
|
|
throwInternal(); |
|
3419
|
|
} |
|
3420
|
6
1. handleAndAppendPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAndAppendPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAndAppendPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAndAppendPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAndAppendPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAndAppendPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
3421
|
|
} |
|
3422
|
|
|
|
3423
|
|
/* |
|
3424
|
|
/********************************************************************** |
|
3425
|
|
/* Implementation of parsing API, skipping remainder CHARACTERS section |
|
3426
|
|
/********************************************************************** |
|
3427
|
|
*/ |
|
3428
|
|
|
|
3429
|
|
/** |
|
3430
|
|
* Method that will be called to skip all possible characters |
|
3431
|
|
* from the input buffer, but without blocking. Partial |
|
3432
|
|
* characters are not to be handled (not pending input |
|
3433
|
|
* is to be added). |
|
3434
|
|
* |
|
3435
|
|
* @return True, if skipping ending with an unexpanded |
|
3436
|
|
* entity; false if not |
|
3437
|
|
*/ |
|
3438
|
|
@Override |
|
3439
|
|
protected boolean skipCharacters() |
|
3440
|
|
throws XMLStreamException |
|
3441
|
|
{ |
|
3442
|
7
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipCharacters : negated conditional → KILLED
3. skipCharacters : changed conditional boundary to IFGE → KILLED
4. skipCharacters : changed conditional boundary to IFGT → KILLED
5. skipCharacters : changed conditional boundary to IFLE → KILLED
6. skipCharacters : changed conditional boundary to IFLT → KILLED
7. skipCharacters : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { |
|
3443
|
6
1. skipCharacters : changed conditional boundary to IFGE → SURVIVED
2. skipCharacters : changed conditional boundary to IFGT → SURVIVED
3. skipCharacters : negated conditional → KILLED
4. skipCharacters : changed conditional boundary to IFEQ → KILLED
5. skipCharacters : changed conditional boundary to IFLE → KILLED
6. skipCharacters : changed conditional boundary to IFLT → KILLED
|
if (!skipPending()) { |
|
3444
|
6
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3445
|
|
} |
|
3446
|
|
} |
|
3447
|
|
|
|
3448
|
2
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
final int[] TYPES = _charTypes.TEXT_CHARS; |
|
3449
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
final ByteBuffer inputBuffer = _inputBuffer; |
|
3450
|
|
|
|
3451
|
|
main_loop: |
|
3452
|
|
while (true) { |
|
3453
|
|
int c; |
|
3454
|
|
|
|
3455
|
|
ascii_loop: |
|
3456
|
|
while (true) { |
|
3457
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
int ptr = _inputPtr; |
|
3458
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
int max = _inputEnd; |
|
3459
|
7
1. skipCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
2. skipCharacters : changed conditional boundary → TIMED_OUT
3. skipCharacters : negated conditional → TIMED_OUT
4. skipCharacters : changed conditional boundary to IF_ICMPEQ → TIMED_OUT
5. skipCharacters : changed conditional boundary to IF_ICMPGE → TIMED_OUT
6. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (ptr >= max) { |
|
3460
|
|
break main_loop; |
|
3461
|
|
} |
|
3462
|
7
1. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
2. skipCharacters : negated conditional → TIMED_OUT
3. skipCharacters : changed conditional boundary to IF_ICMPLT → TIMED_OUT
4. skipCharacters : changed conditional boundary to IF_ICMPNE → TIMED_OUT
5. skipCharacters : changed conditional boundary → KILLED
6. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
while (ptr < max) { |
|
3463
|
11
1. skipCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → TIMED_OUT
2. skipCharacters : UOI Mutator: Removed unary increment of local variable → TIMED_OUT
3. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. skipCharacters : Changed increment from 1 to -1 → KILLED
8. skipCharacters : Replaced bitwise AND with OR → KILLED
9. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. skipCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
11. skipCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
c = (int) inputBuffer.get(ptr++) & 0xFF; |
|
3464
|
6
1. skipCharacters : changed conditional boundary to IFLE → SURVIVED
2. skipCharacters : changed conditional boundary to IFLT → SURVIVED
3. skipCharacters : negated conditional → KILLED
4. skipCharacters : changed conditional boundary to IFGE → KILLED
5. skipCharacters : changed conditional boundary to IFGT → KILLED
6. skipCharacters : changed conditional boundary to IFNE → KILLED
|
if (TYPES[c] != 0) { |
|
3465
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
_inputPtr = ptr; |
|
3466
|
|
break ascii_loop; |
|
3467
|
|
} |
|
3468
|
|
} |
|
3469
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
_inputPtr = ptr; |
|
3470
|
|
} |
|
3471
|
|
// And then fallback for funny chars / UTF-8 multibytes: |
|
3472
|
|
switch (TYPES[c]) { |
|
3473
|
|
case XmlCharTypes.CT_INVALID: |
|
3474
|
|
c = handleInvalidXmlChar(c); |
|
3475
|
|
case XmlCharTypes.CT_WS_CR: |
|
3476
|
|
{ |
|
3477
|
9
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
4. skipCharacters : changed conditional boundary → KILLED
5. skipCharacters : negated conditional → KILLED
6. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGE → KILLED
8. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3478
|
6
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
3479
|
|
break main_loop; |
|
3480
|
|
} |
|
3481
|
12
1. skipCharacters : negated conditional → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. skipCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
5. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
7. skipCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
8. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. skipCharacters : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
12. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
3482
|
8
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. skipCharacters : Replaced operate with second operand → KILLED
8. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
3483
|
|
} |
|
3484
|
1
1. skipCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
3485
|
|
} |
|
3486
|
|
break; |
|
3487
|
|
case XmlCharTypes.CT_WS_LF: |
|
3488
|
1
1. skipCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
3489
|
|
break; |
|
3490
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
3491
|
9
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
4. skipCharacters : changed conditional boundary → KILLED
5. skipCharacters : negated conditional → KILLED
6. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGE → KILLED
8. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3492
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
3493
|
|
break main_loop; |
|
3494
|
|
} |
|
3495
|
1
1. skipCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::skipUtf8_2 → KILLED
|
skipUtf8_2(c); |
|
3496
|
|
break; |
|
3497
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
3498
|
15
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipCharacters : Replaced operate with second operand → KILLED
7. skipCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
8. skipCharacters : changed conditional boundary → KILLED
9. skipCharacters : negated conditional → KILLED
10. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
12. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
13. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
14. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
15. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 2) { |
|
3499
|
10
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. skipCharacters : changed conditional boundary → KILLED
5. skipCharacters : negated conditional → KILLED
6. skipCharacters : changed conditional boundary to IF_ICMPGE → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
3500
|
15
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipCharacters : Replaced operate with second operand → KILLED
12. skipCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipCharacters : Replaced bitwise AND with OR → KILLED
14. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3501
|
7
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. skipCharacters : Replaced Shift Left with Shift Right → KILLED
6. skipCharacters : Replaced bitwise OR with AND → KILLED
7. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
3502
|
|
} |
|
3503
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
3504
|
|
break main_loop; |
|
3505
|
|
} |
|
3506
|
|
decodeUtf8_3(c); |
|
3507
|
|
break; |
|
3508
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
3509
|
15
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipCharacters : Replaced operate with second operand → KILLED
7. skipCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
8. skipCharacters : changed conditional boundary → KILLED
9. skipCharacters : negated conditional → KILLED
10. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. skipCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
12. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
13. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
14. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
15. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((_inputEnd - _inputPtr) < 3) { |
|
3510
|
10
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. skipCharacters : changed conditional boundary → KILLED
5. skipCharacters : negated conditional → KILLED
6. skipCharacters : changed conditional boundary to IF_ICMPGE → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
3511
|
15
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipCharacters : Replaced operate with second operand → KILLED
12. skipCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipCharacters : Replaced bitwise AND with OR → KILLED
14. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3512
|
7
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. skipCharacters : Replaced Shift Left with Shift Right → KILLED
6. skipCharacters : Replaced bitwise OR with AND → KILLED
7. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 8); |
|
3513
|
10
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. skipCharacters : changed conditional boundary → KILLED
5. skipCharacters : negated conditional → KILLED
6. skipCharacters : changed conditional boundary to IF_ICMPGE → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
10. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
3514
|
15
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipCharacters : Replaced operate with second operand → KILLED
12. skipCharacters : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipCharacters : Replaced bitwise AND with OR → KILLED
14. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3515
|
7
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
5. skipCharacters : Replaced Shift Left with Shift Right → KILLED
6. skipCharacters : Replaced bitwise OR with AND → KILLED
7. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c |= (d << 16); |
|
3516
|
|
} |
|
3517
|
|
} |
|
3518
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
3519
|
|
break main_loop; |
|
3520
|
|
} |
|
3521
|
|
decodeUtf8_4(c); |
|
3522
|
|
break; |
|
3523
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
3524
|
1
1. skipCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
3525
|
|
case XmlCharTypes.CT_LT: |
|
3526
|
8
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. skipCharacters : Replaced operate with second operand → KILLED
8. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
--_inputPtr; |
|
3527
|
6
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
3528
|
|
case XmlCharTypes.CT_AMP: |
|
3529
|
|
c = skipEntityInCharacters(); |
|
3530
|
6
1. skipCharacters : changed conditional boundary to IFGE → SURVIVED
2. skipCharacters : changed conditional boundary to IFGT → SURVIVED
3. skipCharacters : negated conditional → KILLED
4. skipCharacters : changed conditional boundary to IFEQ → KILLED
5. skipCharacters : changed conditional boundary to IFLE → KILLED
6. skipCharacters : changed conditional boundary to IFLT → KILLED
|
if (c == 0) { // not a successfully expanded char entity |
|
3531
|
6
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipCharacters : Bug fixed: CRCR replace with One, Substituted -80 with 1 → KILLED
6. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_TEXT_AMP; |
|
3532
|
|
// but we may have input to skip nonetheless.. |
|
3533
|
9
1. skipCharacters : changed conditional boundary → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
7. skipCharacters : negated conditional → KILLED
8. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_inputPtr < _inputEnd) { |
|
3534
|
6
1. skipCharacters : changed conditional boundary to IFGE → SURVIVED
2. skipCharacters : changed conditional boundary to IFLE → SURVIVED
3. skipCharacters : negated conditional → KILLED
4. skipCharacters : changed conditional boundary to IFGT → KILLED
5. skipCharacters : changed conditional boundary to IFLT → KILLED
6. skipCharacters : changed conditional boundary to IFNE → KILLED
|
if (skipPending()) { |
|
3535
|
6
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return true; |
|
3536
|
|
} |
|
3537
|
|
} |
|
3538
|
6
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3539
|
|
} |
|
3540
|
|
break; |
|
3541
|
|
case XmlCharTypes.CT_RBRACKET: // ']]>'? |
|
3542
|
|
/* !!! 09-Mar-2007, tatu: This will not give 100% coverage, |
|
3543
|
|
* for it may be split across input buffer boundary. |
|
3544
|
|
* For now this will have to suffice though. |
|
3545
|
|
*/ |
|
3546
|
|
{ |
|
3547
|
|
// Let's then just count number of brackets -- |
|
3548
|
|
// in case they are not followed by '>' |
|
3549
|
5
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int count = 1; |
|
3550
|
5
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = BYTE_NULL; |
|
3551
|
9
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. skipCharacters : changed conditional boundary → KILLED
5. skipCharacters : negated conditional → KILLED
6. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
7. skipCharacters : changed conditional boundary to IF_ICMPGT → KILLED
8. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
9. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
while (_inputPtr < _inputEnd) { |
|
3552
|
1
1. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
b = inputBuffer.get(_inputPtr); |
|
3553
|
11
1. skipCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
2. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipCharacters : Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED
8. skipCharacters : negated conditional → KILLED
9. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. skipCharacters : changed conditional boundary to IF_ICMPLT → KILLED
11. skipCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if (b != BYTE_RBRACKET) { |
|
3554
|
|
break; |
|
3555
|
|
} |
|
3556
|
8
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; // to skip past bracket |
|
3557
|
5
1. skipCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. skipCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
3. skipCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
4. skipCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. skipCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
++count; |
|
3558
|
|
} |
|
3559
|
24
1. skipCharacters : changed conditional boundary → SURVIVED
2. skipCharacters : negated conditional → SURVIVED
3. skipCharacters : negated conditional → SURVIVED
4. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. skipCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. skipCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
7. skipCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
8. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
9. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
10. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
11. skipCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
12. skipCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
13. skipCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
14. skipCharacters : changed conditional boundary to IF_ICMPNE → SURVIVED
15. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
16. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
17. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
18. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
19. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
20. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
21. skipCharacters : Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED
22. skipCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
23. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
24. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (b == BYTE_GT && count > 1) { |
|
3560
|
1
1. skipCharacters : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportIllegalCDataEnd → NO_COVERAGE
|
reportIllegalCDataEnd(); |
|
3561
|
|
} |
|
3562
|
|
} |
|
3563
|
|
break; |
|
3564
|
|
|
|
3565
|
|
// default: |
|
3566
|
|
// Other types are not important here... |
|
3567
|
|
} |
|
3568
|
|
} |
|
3569
|
|
|
|
3570
|
|
// Ran out of input, no entity encountered |
|
3571
|
6
1. skipCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. skipCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3572
|
|
} |
|
3573
|
|
|
|
3574
|
|
private final boolean skipPending() throws XMLStreamException |
|
3575
|
|
{ |
|
3576
|
|
// First, need to have at least one more byte: |
|
3577
|
9
1. skipPending : changed conditional boundary → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. skipPending : changed conditional boundary to IF_ICMPNE → SURVIVED
5. skipPending : negated conditional → KILLED
6. skipPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipPending : changed conditional boundary to IF_ICMPGE → KILLED
8. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
9. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3578
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3579
|
|
} |
|
3580
|
|
|
|
3581
|
|
// Possible \r\n linefeed? |
|
3582
|
8
1. skipPending : changed conditional boundary → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
3. skipPending : changed conditional boundary to IFGT → SURVIVED
4. skipPending : negated conditional → KILLED
5. skipPending : changed conditional boundary to IFEQ → KILLED
6. skipPending : changed conditional boundary to IFLE → KILLED
7. skipPending : changed conditional boundary to IFLT → KILLED
8. skipPending : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput < 0) { // markers are all negative |
|
3583
|
|
while (true) { |
|
3584
|
1
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
switch (_pendingInput) { |
|
3585
|
|
case PENDING_STATE_CR: |
|
3586
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
3587
|
13
1. skipPending : negated conditional → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipPending : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. skipPending : changed conditional boundary to IF_ICMPGE → SURVIVED
6. skipPending : changed conditional boundary to IF_ICMPGT → SURVIVED
7. skipPending : changed conditional boundary to IF_ICMPGT → SURVIVED
8. skipPending : changed conditional boundary to IF_ICMPLT → SURVIVED
9. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. skipPending : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
13. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
3588
|
8
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. skipPending : Replaced operate with second operand → KILLED
8. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
3589
|
|
} |
|
3590
|
1
1. skipPending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
3591
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
3592
|
|
case PENDING_STATE_TEXT_AMP: |
|
3593
|
|
{ |
|
3594
|
9
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. skipPending : Replaced operate with second operand → KILLED
9. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
3595
|
11
1. skipPending : changed conditional boundary to IF_ICMPGT → SURVIVED
2. skipPending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipPending : Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED
7. skipPending : negated conditional → KILLED
8. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. skipPending : changed conditional boundary to IF_ICMPEQ → KILLED
10. skipPending : changed conditional boundary to IF_ICMPGE → KILLED
11. skipPending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_HASH) { |
|
3596
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted -81 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_TEXT_AMP_HASH; |
|
3597
|
|
break; |
|
3598
|
|
} |
|
3599
|
|
PName n = parseNewEntityName(b); |
|
3600
|
1
1. skipPending : negated conditional → KILLED
|
if (n == null) { |
|
3601
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted -84 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_TEXT_IN_ENTITY; |
|
3602
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3603
|
|
} |
|
3604
|
|
int ch = decodeGeneralEntity(n); |
|
3605
|
6
1. skipPending : negated conditional → SURVIVED
2. skipPending : changed conditional boundary to IFEQ → SURVIVED
3. skipPending : changed conditional boundary to IFGE → SURVIVED
4. skipPending : changed conditional boundary to IFGT → SURVIVED
5. skipPending : changed conditional boundary to IFLE → SURVIVED
6. skipPending : changed conditional boundary to IFLT → SURVIVED
|
if (ch == 0) { |
|
3606
|
1
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
_tokenName = n; |
|
3607
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
_nextEvent = ENTITY_REFERENCE; |
|
3608
|
|
} |
|
3609
|
|
} |
|
3610
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
3611
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; // no matter what, we are done |
|
3612
|
|
case PENDING_STATE_TEXT_AMP_HASH: |
|
3613
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_entityValue = 0; |
|
3614
|
13
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : changed conditional boundary to IF_ICMPGT → SURVIVED
4. skipPending : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipPending : changed conditional boundary to IF_ICMPLT → SURVIVED
6. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipPending : Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED
10. skipPending : negated conditional → KILLED
11. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. skipPending : changed conditional boundary to IF_ICMPEQ → KILLED
13. skipPending : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_x) { |
|
3615
|
8
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. skipPending : Replaced operate with second operand → KILLED
8. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
3616
|
6
1. skipPending : changed conditional boundary to IFLE → SURVIVED
2. skipPending : negated conditional → KILLED
3. skipPending : changed conditional boundary to IFGE → KILLED
4. skipPending : changed conditional boundary to IFGT → KILLED
5. skipPending : changed conditional boundary to IFLT → KILLED
6. skipPending : changed conditional boundary to IFNE → KILLED
|
if (decodeHexEntity()) { |
|
3617
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
3618
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
3619
|
|
} |
|
3620
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted -83 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_TEXT_HEX_ENTITY; |
|
3621
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3622
|
|
} |
|
3623
|
6
1. skipPending : negated conditional → NO_COVERAGE
2. skipPending : changed conditional boundary to IFGE → NO_COVERAGE
3. skipPending : changed conditional boundary to IFGT → NO_COVERAGE
4. skipPending : changed conditional boundary to IFLE → NO_COVERAGE
5. skipPending : changed conditional boundary to IFLT → NO_COVERAGE
6. skipPending : changed conditional boundary to IFNE → NO_COVERAGE
|
if (decodeDecEntity()) { |
|
3624
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = 0; |
|
3625
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return true; |
|
3626
|
|
} |
|
3627
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted -82 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_TEXT_DEC_ENTITY; |
|
3628
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3629
|
|
|
|
3630
|
|
case PENDING_STATE_TEXT_DEC_ENTITY: |
|
3631
|
6
1. skipPending : negated conditional → NO_COVERAGE
2. skipPending : changed conditional boundary to IFGE → NO_COVERAGE
3. skipPending : changed conditional boundary to IFGT → NO_COVERAGE
4. skipPending : changed conditional boundary to IFLE → NO_COVERAGE
5. skipPending : changed conditional boundary to IFLT → NO_COVERAGE
6. skipPending : changed conditional boundary to IFNE → NO_COVERAGE
|
if (decodeDecEntity()) { |
|
3632
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = 0; |
|
3633
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return true; |
|
3634
|
|
} |
|
3635
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3636
|
|
|
|
3637
|
|
case PENDING_STATE_TEXT_HEX_ENTITY: |
|
3638
|
6
1. skipPending : changed conditional boundary to IFLE → SURVIVED
2. skipPending : changed conditional boundary to IFLT → SURVIVED
3. skipPending : negated conditional → KILLED
4. skipPending : changed conditional boundary to IFGE → KILLED
5. skipPending : changed conditional boundary to IFGT → KILLED
6. skipPending : changed conditional boundary to IFNE → KILLED
|
if (decodeHexEntity()) { |
|
3639
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
3640
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
3641
|
|
} |
|
3642
|
6
1. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return false; |
|
3643
|
|
|
|
3644
|
|
case PENDING_STATE_TEXT_IN_ENTITY: |
|
3645
|
|
{ |
|
3646
|
|
PName n = parseEntityName(); |
|
3647
|
1
1. skipPending : negated conditional → KILLED
|
if (n == null) { |
|
3648
|
6
1. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return false; |
|
3649
|
|
} |
|
3650
|
|
int ch = decodeGeneralEntity(n); |
|
3651
|
6
1. skipPending : negated conditional → SURVIVED
2. skipPending : changed conditional boundary to IFEQ → SURVIVED
3. skipPending : changed conditional boundary to IFGE → SURVIVED
4. skipPending : changed conditional boundary to IFGT → SURVIVED
5. skipPending : changed conditional boundary to IFLE → SURVIVED
6. skipPending : changed conditional boundary to IFLT → SURVIVED
|
if (ch == 0) { |
|
3652
|
1
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
_tokenName = n; |
|
3653
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
_nextEvent = ENTITY_REFERENCE; |
|
3654
|
|
} |
|
3655
|
|
} |
|
3656
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
3657
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
3658
|
|
|
|
3659
|
|
case PENDING_STATE_TEXT_BRACKET1: |
|
3660
|
13
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. skipPending : negated conditional → NO_COVERAGE
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. skipPending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. skipPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. skipPending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
13. skipPending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputBuffer.get(_inputPtr) != BYTE_RBRACKET) { |
|
3661
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = 0; |
|
3662
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return true; |
|
3663
|
|
} |
|
3664
|
8
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPending : Replaced operate with second operand → NO_COVERAGE
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
3665
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted -86 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_TEXT_BRACKET2; |
|
3666
|
|
break; |
|
3667
|
|
|
|
3668
|
|
case PENDING_STATE_TEXT_BRACKET2: |
|
3669
|
|
// may get sequence... |
|
3670
|
|
{ |
|
3671
|
2
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
byte b = _inputBuffer.get(_inputPtr); |
|
3672
|
11
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE
5. skipPending : negated conditional → NO_COVERAGE
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipPending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipPending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (b == BYTE_RBRACKET) { |
|
3673
|
8
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPending : Replaced operate with second operand → NO_COVERAGE
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
3674
|
|
break; |
|
3675
|
|
} |
|
3676
|
11
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. skipPending : negated conditional → NO_COVERAGE
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipPending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipPending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipPending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (b == BYTE_GT) { // problem! |
|
3677
|
8
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPending : Replaced operate with second operand → NO_COVERAGE
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
3678
|
1
1. skipPending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
reportInputProblem("Encountered ']]>' in text segment"); |
|
3679
|
|
} |
|
3680
|
|
} |
|
3681
|
|
// nope, something else, reprocess |
|
3682
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = 0; |
|
3683
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return true; |
|
3684
|
|
default: |
|
3685
|
|
throwInternal(); |
|
3686
|
|
} |
|
3687
|
|
|
|
3688
|
9
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. skipPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. skipPending : changed conditional boundary → KILLED
5. skipPending : negated conditional → KILLED
6. skipPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipPending : changed conditional boundary to IF_ICMPGE → KILLED
8. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
9. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3689
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3690
|
|
} |
|
3691
|
|
} |
|
3692
|
|
} |
|
3693
|
|
|
|
3694
|
|
// Nah, a multi-byte UTF-8 char: |
|
3695
|
|
// Let's just re-test the first pending byte (in LSB): |
|
3696
|
1
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
int c = _pendingInput; |
|
3697
|
8
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
3. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. skipPending : Replaced bitwise AND with OR → KILLED
8. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
switch (_charTypes.TEXT_CHARS[c & 0xFF]) { |
|
3698
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
3699
|
|
// Easy: must have just one byte, did get another one: |
|
3700
|
1
1. skipPending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::skipUtf8_2 → KILLED
|
skipUtf8_2(c); |
|
3701
|
|
break; |
|
3702
|
|
|
|
3703
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
3704
|
|
{ |
|
3705
|
|
// Ok... so do we have one or two pending bytes? |
|
3706
|
15
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipPending : Replaced operate with second operand → KILLED
12. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipPending : Replaced bitwise AND with OR → KILLED
14. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int next = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3707
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. skipPending : Replaced Shift Right with Shift Left → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c2 = (c >> 8); |
|
3708
|
6
1. skipPending : changed conditional boundary to IFGT → SURVIVED
2. skipPending : negated conditional → KILLED
3. skipPending : changed conditional boundary to IFEQ → KILLED
4. skipPending : changed conditional boundary to IFGE → KILLED
5. skipPending : changed conditional boundary to IFLE → KILLED
6. skipPending : changed conditional boundary to IFLT → KILLED
|
if (c2 == 0) { // just one; need two more |
|
3709
|
9
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. skipPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. skipPending : changed conditional boundary → KILLED
5. skipPending : negated conditional → KILLED
6. skipPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipPending : changed conditional boundary to IF_ICMPGE → KILLED
8. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
9. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // but got only one |
|
3710
|
8
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. skipPending : Replaced Shift Left with Shift Right → KILLED
7. skipPending : Replaced bitwise OR with AND → KILLED
8. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 8); |
|
3711
|
6
1. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return false; |
|
3712
|
|
} |
|
3713
|
15
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipPending : Replaced operate with second operand → KILLED
12. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipPending : Replaced bitwise AND with OR → KILLED
14. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3714
|
|
decodeUtf8_3(c, next, c3); |
|
3715
|
|
} else { // had two, got one, bueno: |
|
3716
|
6
1. skipPending : Replaced bitwise AND with OR → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
decodeUtf8_3((c & 0xFF), c2, next); |
|
3717
|
|
} |
|
3718
|
|
} |
|
3719
|
|
break; |
|
3720
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
3721
|
|
{ |
|
3722
|
15
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipPending : Replaced operate with second operand → KILLED
12. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipPending : Replaced bitwise AND with OR → KILLED
14. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int next = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3723
|
|
// Only had one? |
|
3724
|
12
1. skipPending : changed conditional boundary to IFGT → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. skipPending : Replaced Shift Right with Shift Left → KILLED
7. skipPending : negated conditional → KILLED
8. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. skipPending : changed conditional boundary to IFEQ → KILLED
10. skipPending : changed conditional boundary to IFGE → KILLED
11. skipPending : changed conditional boundary to IFLE → KILLED
12. skipPending : changed conditional boundary to IFLT → KILLED
|
if ((c >> 8) == 0) { // ok, so need 3 more |
|
3725
|
9
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. skipPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. skipPending : changed conditional boundary → KILLED
5. skipPending : negated conditional → KILLED
6. skipPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipPending : changed conditional boundary to IF_ICMPGE → KILLED
8. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
9. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // just have 1 |
|
3726
|
8
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
6. skipPending : Replaced Shift Left with Shift Right → KILLED
7. skipPending : Replaced bitwise OR with AND → KILLED
8. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 8); |
|
3727
|
6
1. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return false; |
|
3728
|
|
} |
|
3729
|
15
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipPending : Replaced operate with second operand → KILLED
12. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipPending : Replaced bitwise AND with OR → KILLED
14. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c2 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3730
|
9
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. skipPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. skipPending : changed conditional boundary → KILLED
5. skipPending : negated conditional → KILLED
6. skipPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipPending : changed conditional boundary to IF_ICMPGE → KILLED
8. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
9. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // almost, got 2 |
|
3731
|
15
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. skipPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
9. skipPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
10. skipPending : Replaced Shift Left with Shift Right → KILLED
11. skipPending : Replaced bitwise OR with AND → KILLED
12. skipPending : Replaced Shift Left with Shift Right → KILLED
13. skipPending : Replaced bitwise OR with AND → KILLED
14. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 8) | (c2 << 16); |
|
3732
|
6
1. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return false; |
|
3733
|
|
} |
|
3734
|
15
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipPending : Replaced operate with second operand → KILLED
12. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipPending : Replaced bitwise AND with OR → KILLED
14. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3735
|
|
decodeUtf8_4(c, next, c2, c3); |
|
3736
|
|
} else { // had two or three |
|
3737
|
12
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipPending : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
8. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
9. skipPending : Replaced Shift Right with Shift Left → KILLED
10. skipPending : Replaced bitwise AND with OR → KILLED
11. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c2 = (c >> 8) & 0xFF; |
|
3738
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
5. skipPending : Replaced Shift Right with Shift Left → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c3 = (c >> 16); |
|
3739
|
|
|
|
3740
|
6
1. skipPending : changed conditional boundary to IFGT → SURVIVED
2. skipPending : negated conditional → KILLED
3. skipPending : changed conditional boundary to IFEQ → KILLED
4. skipPending : changed conditional boundary to IFGE → KILLED
5. skipPending : changed conditional boundary to IFLE → KILLED
6. skipPending : changed conditional boundary to IFLT → KILLED
|
if (c3 == 0) { // just two |
|
3741
|
9
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. skipPending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. skipPending : changed conditional boundary → KILLED
5. skipPending : negated conditional → KILLED
6. skipPending : changed conditional boundary to IF_ICMPEQ → KILLED
7. skipPending : changed conditional boundary to IF_ICMPGE → KILLED
8. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
9. skipPending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // one short |
|
3742
|
8
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
6. skipPending : Replaced Shift Left with Shift Right → KILLED
7. skipPending : Replaced bitwise OR with AND → KILLED
8. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = c | (next << 16); |
|
3743
|
6
1. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return false; |
|
3744
|
|
} |
|
3745
|
15
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. skipPending : Replaced operate with second operand → KILLED
12. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. skipPending : Replaced bitwise AND with OR → KILLED
14. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3746
|
6
1. skipPending : Replaced bitwise AND with OR → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
decodeUtf8_4((c & 0xFF), c2, next, c3); |
|
3747
|
|
} else { // had three, got last |
|
3748
|
6
1. skipPending : Replaced bitwise AND with OR → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
decodeUtf8_4((c & 0xFF), c2, c3, next); |
|
3749
|
|
} |
|
3750
|
|
} |
|
3751
|
|
} |
|
3752
|
|
break; |
|
3753
|
|
default: // should never occur: |
|
3754
|
|
throwInternal(); |
|
3755
|
|
} |
|
3756
|
6
1. skipPending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipPending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
3757
|
6
1. skipPending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipPending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipPending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipPending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipPending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipPending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
3758
|
|
} |
|
3759
|
|
|
|
3760
|
|
/** |
|
3761
|
|
* Method called to handle entity encountered inside |
|
3762
|
|
* CHARACTERS segment, when trying to complete a non-coalescing text segment. |
|
3763
|
|
* |
|
3764
|
|
* @return Expanded (character) entity, if positive number; 0 if incomplete. |
|
3765
|
|
*/ |
|
3766
|
|
private int skipEntityInCharacters() throws XMLStreamException |
|
3767
|
|
{ |
|
3768
|
|
/* Thing that simplifies processing here is that handling |
|
3769
|
|
* is pretty much optional: if there isn't enough data, we |
|
3770
|
|
* just return 0 and are done with it. |
|
3771
|
|
* |
|
3772
|
|
* Also: we need at least 3 more characters for any character entity |
|
3773
|
|
*/ |
|
3774
|
1
1. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
int ptr = _inputPtr; |
|
3775
|
13
1. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. skipEntityInCharacters : Replaced operate with second operand → KILLED
7. skipEntityInCharacters : changed conditional boundary → KILLED
8. skipEntityInCharacters : negated conditional → KILLED
9. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
12. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
13. skipEntityInCharacters : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((ptr + 3) <= _inputEnd) { |
|
3776
|
6
1. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipEntityInCharacters : Changed increment from 1 to -1 → KILLED
3. skipEntityInCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED
4. skipEntityInCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED
5. skipEntityInCharacters : UOI Mutator: Removed unary increment of local variable → KILLED
6. skipEntityInCharacters : UOI Mutator: Reversed increment of local variable → KILLED
|
byte b = _inputBuffer.get(ptr++); |
|
3777
|
11
1. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
2. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED
7. skipEntityInCharacters : negated conditional → KILLED
8. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_HASH) { // numeric character entity |
|
3778
|
12
1. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
5. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED
9. skipEntityInCharacters : negated conditional → KILLED
10. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
12. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputBuffer.get(ptr) == BYTE_x) { |
|
3779
|
7
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. skipEntityInCharacters : Replaced operate with second operand → KILLED
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. skipEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return handleHexEntityInCharacters(ptr+1); |
|
3780
|
|
} |
|
3781
|
1
1. skipEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return handleDecEntityInCharacters(ptr); |
|
3782
|
|
} |
|
3783
|
|
// general entity; maybe one of pre-defined ones |
|
3784
|
11
1. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
2. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED
8. skipEntityInCharacters : negated conditional → KILLED
9. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_a) { // amp or apos? |
|
3785
|
6
1. skipEntityInCharacters : Changed increment from 1 to -1 → NO_COVERAGE
2. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
3. skipEntityInCharacters : UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE
4. skipEntityInCharacters : UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE
5. skipEntityInCharacters : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
6. skipEntityInCharacters : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
b = _inputBuffer.get(ptr++); |
|
3786
|
11
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 109 with 1 → NO_COVERAGE
5. skipEntityInCharacters : negated conditional → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (b == BYTE_m) { |
|
3787
|
15
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipEntityInCharacters : changed conditional boundary → NO_COVERAGE
7. skipEntityInCharacters : negated conditional → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((ptr + 1) < _inputPtr |
|
3788
|
18
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. skipEntityInCharacters : negated conditional → NO_COVERAGE
11. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr) == BYTE_p |
|
3789
|
11
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. skipEntityInCharacters : negated conditional → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+1) == BYTE_SEMICOLON) { |
|
3790
|
7
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr + 2; // NOTE: do skip semicolon as well |
|
3791
|
6
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 38 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_AMP; |
|
3792
|
|
} |
|
3793
|
11
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE
5. skipEntityInCharacters : negated conditional → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (b == BYTE_p) { |
|
3794
|
15
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipEntityInCharacters : changed conditional boundary → NO_COVERAGE
7. skipEntityInCharacters : negated conditional → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((ptr + 2) < _inputPtr |
|
3795
|
18
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. skipEntityInCharacters : negated conditional → NO_COVERAGE
11. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr) == BYTE_o |
|
3796
|
18
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 115 with 1 → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
9. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. skipEntityInCharacters : negated conditional → NO_COVERAGE
11. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+1) == BYTE_s |
|
3797
|
11
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. skipEntityInCharacters : negated conditional → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+2) == BYTE_SEMICOLON) { |
|
3798
|
7
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr + 3; |
|
3799
|
6
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_APOS; |
|
3800
|
|
} |
|
3801
|
|
} |
|
3802
|
11
1. skipEntityInCharacters : negated conditional → SURVIVED
2. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → SURVIVED
4. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
6. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
7. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 103 with 1 → KILLED
11. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
} else if (b == BYTE_g) { // gt? |
|
3803
|
19
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. skipEntityInCharacters : negated conditional → NO_COVERAGE
11. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
17. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
19. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_inputBuffer.get(ptr) == BYTE_t |
|
3804
|
11
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. skipEntityInCharacters : negated conditional → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+1) == BYTE_SEMICOLON) { |
|
3805
|
7
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr + 2; |
|
3806
|
6
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_GT; |
|
3807
|
|
} |
|
3808
|
11
1. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
2. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
4. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 108 with 1 → KILLED
8. skipEntityInCharacters : negated conditional → KILLED
9. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
|
} else if (b == BYTE_l) { // lt? |
|
3809
|
19
1. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
3. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
4. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
5. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
6. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 116 with 1 → KILLED
13. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
14. skipEntityInCharacters : Replaced operate with second operand → KILLED
15. skipEntityInCharacters : negated conditional → KILLED
16. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
19. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
|
if (_inputBuffer.get(ptr) == BYTE_t |
|
3810
|
11
1. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
2. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → SURVIVED
3. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → SURVIVED
4. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
8. skipEntityInCharacters : negated conditional → KILLED
9. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → KILLED
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → KILLED
|
&& _inputBuffer.get(ptr+1) == BYTE_SEMICOLON) { |
|
3811
|
7
1. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. skipEntityInCharacters : Replaced operate with second operand → KILLED
7. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_inputPtr = ptr + 2; |
|
3812
|
6
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED
5. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. skipEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return INT_LT; |
|
3813
|
|
} |
|
3814
|
11
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 113 with 1 → NO_COVERAGE
5. skipEntityInCharacters : negated conditional → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (b == BYTE_q) { // quot? |
|
3815
|
15
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipEntityInCharacters : changed conditional boundary → NO_COVERAGE
7. skipEntityInCharacters : negated conditional → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
10. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((ptr + 3) < _inputPtr |
|
3816
|
18
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 117 with 1 → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. skipEntityInCharacters : negated conditional → NO_COVERAGE
11. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr) == BYTE_u |
|
3817
|
18
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
9. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. skipEntityInCharacters : negated conditional → NO_COVERAGE
11. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+1) == BYTE_o |
|
3818
|
18
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE
8. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
9. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
10. skipEntityInCharacters : negated conditional → NO_COVERAGE
11. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
15. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
16. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
17. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
18. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+2) == BYTE_t |
|
3819
|
11
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE
5. skipEntityInCharacters : negated conditional → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. skipEntityInCharacters : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. skipEntityInCharacters : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. skipEntityInCharacters : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
&& _inputBuffer.get(ptr+3) == BYTE_SEMICOLON) { |
|
3820
|
7
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Replaced operate with second operand → NO_COVERAGE
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipEntityInCharacters : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
_inputPtr = ptr + 4; |
|
3821
|
6
1. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE
5. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return INT_APOS; |
|
3822
|
|
} |
|
3823
|
|
} |
|
3824
|
|
} |
|
3825
|
|
// couldn't handle: |
|
3826
|
6
1. skipEntityInCharacters : replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
2. skipEntityInCharacters : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipEntityInCharacters : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. skipEntityInCharacters : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. skipEntityInCharacters : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. skipEntityInCharacters : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return 0; |
|
3827
|
|
} |
|
3828
|
|
|
|
3829
|
|
/** |
|
3830
|
|
* Coalescing mode is (and will) not be implemented for non-blocking |
|
3831
|
|
* parsers, so this method should never get called. |
|
3832
|
|
*/ |
|
3833
|
|
@Override |
|
3834
|
|
protected boolean skipCoalescedText() |
|
3835
|
|
throws XMLStreamException |
|
3836
|
|
{ |
|
3837
|
|
throwInternal(); |
|
3838
|
6
1. skipCoalescedText : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipCoalescedText : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipCoalescedText : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipCoalescedText : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. skipCoalescedText : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. skipCoalescedText : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3839
|
|
} |
|
3840
|
|
|
|
3841
|
|
/* |
|
3842
|
|
/********************************************************************** |
|
3843
|
|
/* Implementation of parsing API, element/attr events |
|
3844
|
|
/********************************************************************** |
|
3845
|
|
*/ |
|
3846
|
|
|
|
3847
|
|
/** |
|
3848
|
|
* @return True, if the whole value was read; false if |
|
3849
|
|
* only part (due to buffer ending) |
|
3850
|
|
*/ |
|
3851
|
|
@Override |
|
3852
|
|
protected boolean handleAttrValue() |
|
3853
|
|
throws XMLStreamException |
|
3854
|
|
{ |
|
3855
|
|
// First; any pending input? |
|
3856
|
7
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValue : negated conditional → KILLED
3. handleAttrValue : changed conditional boundary to IFGE → KILLED
4. handleAttrValue : changed conditional boundary to IFGT → KILLED
5. handleAttrValue : changed conditional boundary to IFLE → KILLED
6. handleAttrValue : changed conditional boundary to IFLT → KILLED
7. handleAttrValue : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { |
|
3857
|
6
1. handleAttrValue : changed conditional boundary to IFGT → SURVIVED
2. handleAttrValue : negated conditional → KILLED
3. handleAttrValue : changed conditional boundary to IFEQ → KILLED
4. handleAttrValue : changed conditional boundary to IFGE → KILLED
5. handleAttrValue : changed conditional boundary to IFLE → KILLED
6. handleAttrValue : changed conditional boundary to IFLT → KILLED
|
if (!handleAttrValuePending()) { |
|
3858
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3859
|
|
} |
|
3860
|
6
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
3861
|
|
} |
|
3862
|
|
|
|
3863
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED
|
char[] attrBuffer = _attrCollector.continueValue(); |
|
3864
|
2
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldATTR_CHARS mutated with null check on object → SURVIVED
|
final int[] TYPES = _charTypes.ATTR_CHARS; |
|
3865
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
final int quoteChar = (int) _elemAttrQuote; |
|
3866
|
|
|
|
3867
|
|
value_loop: |
|
3868
|
|
while (true) { |
|
3869
|
|
int c; |
|
3870
|
|
|
|
3871
|
|
ascii_loop: |
|
3872
|
|
while (true) { |
|
3873
|
9
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleAttrValue : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleAttrValue : changed conditional boundary → TIMED_OUT
5. handleAttrValue : negated conditional → KILLED
6. handleAttrValue : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAttrValue : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAttrValue : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAttrValue : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3874
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3875
|
|
} |
|
3876
|
8
1. handleAttrValue : changed conditional boundary → SURVIVED
2. handleAttrValue : negated conditional → SURVIVED
3. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
4. handleAttrValue : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleAttrValue : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleAttrValue : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleAttrValue : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleAttrValue : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_elemAttrPtr >= attrBuffer.length) { |
|
3877
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
attrBuffer = _attrCollector.valueBufferFull(); |
|
3878
|
|
} |
|
3879
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
int max = _inputEnd; |
|
3880
|
|
{ |
|
3881
|
4
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
3. handleAttrValue : Replaced operate with second operand → KILLED
4. handleAttrValue : Replaced operate with second operand → KILLED
|
int max2 = _inputPtr + (attrBuffer.length - _elemAttrPtr); |
|
3882
|
7
1. handleAttrValue : changed conditional boundary → SURVIVED
2. handleAttrValue : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleAttrValue : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleAttrValue : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleAttrValue : negated conditional → KILLED
6. handleAttrValue : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAttrValue : changed conditional boundary to IF_ICMPLT → KILLED
|
if (max2 < max) { |
|
3883
|
|
max = max2; |
|
3884
|
|
} |
|
3885
|
|
} |
|
3886
|
8
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValue : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleAttrValue : negated conditional → TIMED_OUT
4. handleAttrValue : changed conditional boundary to IF_ICMPLT → TIMED_OUT
5. handleAttrValue : changed conditional boundary to IF_ICMPNE → TIMED_OUT
6. handleAttrValue : changed conditional boundary → KILLED
7. handleAttrValue : changed conditional boundary to IF_ICMPGT → KILLED
8. handleAttrValue : changed conditional boundary to IF_ICMPGT → KILLED
|
while (_inputPtr < max) { |
|
3887
|
15
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. handleAttrValue : Replaced operate with second operand → KILLED
12. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. handleAttrValue : Replaced bitwise AND with OR → KILLED
14. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3888
|
6
1. handleAttrValue : changed conditional boundary to IFLE → SURVIVED
2. handleAttrValue : changed conditional boundary to IFLT → SURVIVED
3. handleAttrValue : negated conditional → KILLED
4. handleAttrValue : changed conditional boundary to IFGE → KILLED
5. handleAttrValue : changed conditional boundary to IFGT → KILLED
6. handleAttrValue : changed conditional boundary to IFNE → KILLED
|
if (TYPES[c] != 0) { |
|
3889
|
|
break ascii_loop; |
|
3890
|
|
} |
|
3891
|
8
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
3. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleAttrValue : Replaced operate with second operand → KILLED
8. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
attrBuffer[_elemAttrPtr++] = (char) c; |
|
3892
|
|
} |
|
3893
|
|
} |
|
3894
|
|
|
|
3895
|
|
switch (TYPES[c]) { |
|
3896
|
|
case XmlCharTypes.CT_INVALID: |
|
3897
|
|
c = handleInvalidXmlChar(c); |
|
3898
|
|
case XmlCharTypes.CT_WS_CR: |
|
3899
|
9
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleAttrValue : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleAttrValue : changed conditional boundary → KILLED
5. handleAttrValue : negated conditional → KILLED
6. handleAttrValue : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAttrValue : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAttrValue : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAttrValue : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3900
|
6
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValue : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_CR; |
|
3901
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3902
|
|
} |
|
3903
|
13
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAttrValue : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handleAttrValue : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handleAttrValue : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
10. handleAttrValue : negated conditional → KILLED
11. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. handleAttrValue : changed conditional boundary to IF_ICMPEQ → KILLED
13. handleAttrValue : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
3904
|
8
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
6. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
3905
|
|
} |
|
3906
|
|
// fall through |
|
3907
|
|
case XmlCharTypes.CT_WS_LF: |
|
3908
|
1
1. handleAttrValue : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
markLF(); |
|
3909
|
|
// fall through |
|
3910
|
|
case XmlCharTypes.CT_WS_TAB: |
|
3911
|
|
// Plus, need to convert these all to simple space |
|
3912
|
5
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = INT_SPACE; |
|
3913
|
|
break; |
|
3914
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
3915
|
9
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleAttrValue : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleAttrValue : changed conditional boundary → KILLED
5. handleAttrValue : negated conditional → KILLED
6. handleAttrValue : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAttrValue : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAttrValue : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAttrValue : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
3916
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
_pendingInput = c; |
|
3917
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3918
|
|
} |
|
3919
|
|
c = decodeUtf8_2(c); |
|
3920
|
|
break; |
|
3921
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
3922
|
15
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
6. handleAttrValue : changed conditional boundary → NO_COVERAGE
7. handleAttrValue : negated conditional → NO_COVERAGE
8. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. handleAttrValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleAttrValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleAttrValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 2) { |
|
3923
|
10
1. handleAttrValue : changed conditional boundary → NO_COVERAGE
2. handleAttrValue : negated conditional → NO_COVERAGE
3. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleAttrValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAttrValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAttrValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleAttrValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
3924
|
15
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValue : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3925
|
7
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleAttrValue : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleAttrValue : Replaced bitwise OR with AND → NO_COVERAGE
7. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
3926
|
|
} |
|
3927
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
3928
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3929
|
|
} |
|
3930
|
|
c = decodeUtf8_3(c); |
|
3931
|
|
break; |
|
3932
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
3933
|
15
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
6. handleAttrValue : changed conditional boundary → NO_COVERAGE
7. handleAttrValue : negated conditional → NO_COVERAGE
8. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. handleAttrValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleAttrValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleAttrValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 3) { |
|
3934
|
10
1. handleAttrValue : changed conditional boundary → NO_COVERAGE
2. handleAttrValue : negated conditional → NO_COVERAGE
3. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleAttrValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAttrValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAttrValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleAttrValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
3935
|
15
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValue : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3936
|
7
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleAttrValue : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleAttrValue : Replaced bitwise OR with AND → NO_COVERAGE
7. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
3937
|
10
1. handleAttrValue : changed conditional boundary → NO_COVERAGE
2. handleAttrValue : negated conditional → NO_COVERAGE
3. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleAttrValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAttrValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAttrValue : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleAttrValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
3938
|
15
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValue : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
3939
|
7
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleAttrValue : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleAttrValue : Replaced bitwise OR with AND → NO_COVERAGE
7. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 16); |
|
3940
|
|
} |
|
3941
|
|
} |
|
3942
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
3943
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3944
|
|
} |
|
3945
|
|
c = decodeUtf8_4(c); |
|
3946
|
|
// Let's add first part right away: |
|
3947
|
20
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
11. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
12. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
13. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
14. handleAttrValue : Replaced Shift Right with Shift Left → NO_COVERAGE
15. handleAttrValue : Replaced bitwise OR with AND → NO_COVERAGE
16. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
20. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemAttrPtr++] = (char) (0xD800 | (c >> 10)); |
|
3948
|
12
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. handleAttrValue : Replaced bitwise AND with OR → NO_COVERAGE
10. handleAttrValue : Replaced bitwise OR with AND → NO_COVERAGE
11. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
3949
|
8
1. handleAttrValue : changed conditional boundary → NO_COVERAGE
2. handleAttrValue : negated conditional → NO_COVERAGE
3. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
4. handleAttrValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. handleAttrValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_elemAttrPtr >= attrBuffer.length) { |
|
3950
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
attrBuffer = _attrCollector.valueBufferFull(); |
|
3951
|
|
} |
|
3952
|
|
break; |
|
3953
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
3954
|
1
1. handleAttrValue : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
3955
|
|
case XmlCharTypes.CT_LT: |
|
3956
|
1
1. handleAttrValue : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(c, "'<' not allowed in attribute value"); |
|
3957
|
|
case XmlCharTypes.CT_AMP: |
|
3958
|
|
c = handleEntityInAttributeValue(); |
|
3959
|
7
1. handleAttrValue : changed conditional boundary → SURVIVED
2. handleAttrValue : changed conditional boundary to IFGE → SURVIVED
3. handleAttrValue : negated conditional → KILLED
4. handleAttrValue : changed conditional boundary to IFEQ → KILLED
5. handleAttrValue : changed conditional boundary to IFLE → KILLED
6. handleAttrValue : changed conditional boundary to IFLT → KILLED
7. handleAttrValue : changed conditional boundary to IFNE → KILLED
|
if (c <= 0) { // general entity; should never happen |
|
3960
|
7
1. handleAttrValue : changed conditional boundary → SURVIVED
2. handleAttrValue : changed conditional boundary to IFEQ → SURVIVED
3. handleAttrValue : changed conditional boundary to IFGT → SURVIVED
4. handleAttrValue : negated conditional → KILLED
5. handleAttrValue : changed conditional boundary to IFLE → KILLED
6. handleAttrValue : changed conditional boundary to IFLT → KILLED
7. handleAttrValue : changed conditional boundary to IFNE → KILLED
|
if (c < 0) { // end-of-input |
|
3961
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
3962
|
|
} |
|
3963
|
7
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE
7. handleAttrValue : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
reportUnexpandedEntityInAttr(_elemAttrName, false); |
|
3964
|
|
} |
|
3965
|
|
// Ok; does it need a surrogate though? (over 16 bits) |
|
3966
|
12
1. handleAttrValue : changed conditional boundary to IFGE → SURVIVED
2. handleAttrValue : changed conditional boundary to IFLE → SURVIVED
3. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
7. handleAttrValue : Replaced Shift Right with Shift Left → KILLED
8. handleAttrValue : negated conditional → KILLED
9. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleAttrValue : changed conditional boundary to IFGT → KILLED
11. handleAttrValue : changed conditional boundary to IFLT → KILLED
12. handleAttrValue : changed conditional boundary to IFNE → KILLED
|
if ((c >> 16) != 0) { |
|
3967
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
6. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c -= 0x10000; |
|
3968
|
20
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
11. handleAttrValue : Replaced operate with second operand → NO_COVERAGE
12. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
13. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
14. handleAttrValue : Replaced Shift Right with Shift Left → NO_COVERAGE
15. handleAttrValue : Replaced bitwise OR with AND → NO_COVERAGE
16. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
20. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemAttrPtr++] = (char) (0xD800 | (c >> 10)); |
|
3969
|
12
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. handleAttrValue : Replaced bitwise AND with OR → NO_COVERAGE
10. handleAttrValue : Replaced bitwise OR with AND → NO_COVERAGE
11. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
3970
|
8
1. handleAttrValue : changed conditional boundary → NO_COVERAGE
2. handleAttrValue : negated conditional → NO_COVERAGE
3. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
4. handleAttrValue : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. handleAttrValue : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleAttrValue : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValue : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_elemAttrPtr >= attrBuffer.length) { |
|
3971
|
1
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
attrBuffer = _attrCollector.valueBufferFull(); |
|
3972
|
|
} |
|
3973
|
|
} |
|
3974
|
|
break; |
|
3975
|
|
case XmlCharTypes.CT_ATTR_QUOTE: |
|
3976
|
6
1. handleAttrValue : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleAttrValue : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleAttrValue : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleAttrValue : negated conditional → KILLED
5. handleAttrValue : changed conditional boundary to IF_ICMPEQ → KILLED
6. handleAttrValue : changed conditional boundary to IF_ICMPGE → KILLED
|
if (c == quoteChar) { |
|
3977
|
|
break value_loop; |
|
3978
|
|
} |
|
3979
|
|
|
|
3980
|
|
// default: |
|
3981
|
|
// Other chars are not important here... |
|
3982
|
|
} |
|
3983
|
|
// We know there's room for at least one char without checking |
|
3984
|
8
1. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
2. handleAttrValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
3. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleAttrValue : Replaced operate with second operand → KILLED
8. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
attrBuffer[_elemAttrPtr++] = (char) c; |
|
3985
|
|
} |
|
3986
|
|
|
|
3987
|
6
1. handleAttrValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAttrValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; // yeah, we're done! |
|
3988
|
|
} |
|
3989
|
|
|
|
3990
|
|
/** |
|
3991
|
|
* @return True if the partial information was succesfully handled; |
|
3992
|
|
* false if not |
|
3993
|
|
*/ |
|
3994
|
|
private final boolean handleAttrValuePending() throws XMLStreamException |
|
3995
|
|
{ |
|
3996
|
12
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : negated conditional → KILLED
7. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_CR) { |
|
3997
|
6
1. handleAttrValuePending : changed conditional boundary to IFGE → SURVIVED
2. handleAttrValuePending : changed conditional boundary to IFGT → SURVIVED
3. handleAttrValuePending : negated conditional → KILLED
4. handleAttrValuePending : changed conditional boundary to IFEQ → KILLED
5. handleAttrValuePending : changed conditional boundary to IFLE → KILLED
6. handleAttrValuePending : changed conditional boundary to IFLT → KILLED
|
if (!handlePartialCR()) { |
|
3998
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
3999
|
|
} |
|
4000
|
1
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED
|
char[] attrBuffer = _attrCollector.continueValue(); |
|
4001
|
8
1. handleAttrValuePending : changed conditional boundary → SURVIVED
2. handleAttrValuePending : negated conditional → SURVIVED
3. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
4. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_elemAttrPtr >= attrBuffer.length) { |
|
4002
|
1
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
attrBuffer = _attrCollector.valueBufferFull(); |
|
4003
|
|
} |
|
4004
|
|
// All LFs get converted to spaces, in attribute values |
|
4005
|
13
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
3. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
10. handleAttrValuePending : Replaced operate with second operand → KILLED
11. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED
12. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
attrBuffer[_elemAttrPtr++] = ' '; |
|
4006
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
4007
|
|
} |
|
4008
|
|
// otherwise must be related to entity handling within attribute value |
|
4009
|
9
1. handleAttrValuePending : changed conditional boundary → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handleAttrValuePending : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleAttrValuePending : negated conditional → KILLED
6. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4010
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4011
|
|
} |
|
4012
|
|
int ch; |
|
4013
|
|
|
|
4014
|
12
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -60 with 1 → KILLED
6. handleAttrValuePending : negated conditional → KILLED
7. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_pendingInput == PENDING_STATE_ATTR_VALUE_AMP) { |
|
4015
|
9
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleAttrValuePending : Replaced operate with second operand → KILLED
9. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
4016
|
11
1. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED
7. handleAttrValuePending : negated conditional → KILLED
8. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_HASH) { // numeric character entity |
|
4017
|
6
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -61 with 1 → KILLED
6. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP_HASH; |
|
4018
|
9
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleAttrValuePending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleAttrValuePending : changed conditional boundary → KILLED
5. handleAttrValuePending : negated conditional → KILLED
6. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4019
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
4020
|
|
} |
|
4021
|
13
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED
8. handleAttrValuePending : negated conditional → KILLED
9. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
13. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_x) { |
|
4022
|
6
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -62 with 1 → KILLED
6. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP_HASH_X; |
|
4023
|
8
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleAttrValuePending : Replaced operate with second operand → KILLED
8. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
4024
|
9
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleAttrValuePending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleAttrValuePending : changed conditional boundary → KILLED
5. handleAttrValuePending : negated conditional → KILLED
6. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4025
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
4026
|
|
} |
|
4027
|
5
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleHexEntityInAttribute(true); |
|
4028
|
|
} else { |
|
4029
|
5
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleDecEntityInAttribute(true); |
|
4030
|
|
} |
|
4031
|
|
} else { |
|
4032
|
|
PName entityName = parseNewEntityName(b); |
|
4033
|
1
1. handleAttrValuePending : negated conditional → KILLED
|
if (entityName == null) { |
|
4034
|
6
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -63 with 1 → KILLED
6. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_ENTITY_NAME; |
|
4035
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
4036
|
|
} |
|
4037
|
|
ch = decodeGeneralEntity(entityName); |
|
4038
|
6
1. handleAttrValuePending : changed conditional boundary to IFGE → SURVIVED
2. handleAttrValuePending : changed conditional boundary to IFGT → SURVIVED
3. handleAttrValuePending : negated conditional → KILLED
4. handleAttrValuePending : changed conditional boundary to IFEQ → KILLED
5. handleAttrValuePending : changed conditional boundary to IFLE → KILLED
6. handleAttrValuePending : changed conditional boundary to IFLT → KILLED
|
if (ch == 0) { // can't have general entities within attribute values |
|
4039
|
1
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
_tokenName = entityName; |
|
4040
|
7
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE
7. handleAttrValuePending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
reportUnexpandedEntityInAttr(_elemAttrName, false); |
|
4041
|
|
} |
|
4042
|
|
} |
|
4043
|
12
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -61 with 1 → KILLED
6. handleAttrValuePending : negated conditional → KILLED
7. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_AMP_HASH) { |
|
4044
|
13
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED
8. handleAttrValuePending : negated conditional → KILLED
9. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
13. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_x) { |
|
4045
|
6
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -62 with 1 → KILLED
6. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP_HASH_X; |
|
4046
|
8
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleAttrValuePending : Replaced operate with second operand → KILLED
8. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
4047
|
9
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleAttrValuePending : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleAttrValuePending : changed conditional boundary → KILLED
5. handleAttrValuePending : negated conditional → KILLED
6. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4048
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
4049
|
|
} |
|
4050
|
5
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleHexEntityInAttribute(true); |
|
4051
|
|
} else { |
|
4052
|
5
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleDecEntityInAttribute(true); |
|
4053
|
|
} |
|
4054
|
12
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -62 with 1 → KILLED
6. handleAttrValuePending : negated conditional → KILLED
7. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_AMP_HASH_X) { |
|
4055
|
5
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleHexEntityInAttribute(true); |
|
4056
|
12
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -63 with 1 → KILLED
6. handleAttrValuePending : negated conditional → KILLED
7. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_ENTITY_NAME) { |
|
4057
|
|
PName entityName = parseEntityName(); |
|
4058
|
1
1. handleAttrValuePending : negated conditional → KILLED
|
if (entityName == null) { |
|
4059
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
4060
|
|
} |
|
4061
|
|
ch = decodeGeneralEntity(entityName); |
|
4062
|
6
1. handleAttrValuePending : changed conditional boundary to IFGE → SURVIVED
2. handleAttrValuePending : changed conditional boundary to IFGT → SURVIVED
3. handleAttrValuePending : negated conditional → KILLED
4. handleAttrValuePending : changed conditional boundary to IFEQ → KILLED
5. handleAttrValuePending : changed conditional boundary to IFLE → KILLED
6. handleAttrValuePending : changed conditional boundary to IFLT → KILLED
|
if (ch == 0) { // can't have general entities within attribute values |
|
4063
|
1
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
_tokenName = entityName; |
|
4064
|
7
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE
7. handleAttrValuePending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
reportUnexpandedEntityInAttr(_elemAttrName, false); |
|
4065
|
|
} |
|
4066
|
12
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -64 with 1 → KILLED
6. handleAttrValuePending : negated conditional → KILLED
7. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
9. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_DEC_DIGIT) { |
|
4067
|
5
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleDecEntityInAttribute(false); |
|
4068
|
12
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted -65 with 1 → KILLED
8. handleAttrValuePending : negated conditional → KILLED
9. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → KILLED
12. handleAttrValuePending : changed conditional boundary to IF_ICMPLT → KILLED
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_HEX_DIGIT) { |
|
4069
|
5
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleHexEntityInAttribute(false); |
|
4070
|
|
} else { // nope, split UTF-8 char |
|
4071
|
|
// Nah, a multi-byte UTF-8 char. Alas, can't use shared method, as results |
|
4072
|
|
// don't go in shared text buffer... |
|
4073
|
|
ch = handleAttrValuePendingUTF8(); |
|
4074
|
|
} |
|
4075
|
6
1. handleAttrValuePending : changed conditional boundary to IFGT → SURVIVED
2. handleAttrValuePending : negated conditional → KILLED
3. handleAttrValuePending : changed conditional boundary to IFEQ → KILLED
4. handleAttrValuePending : changed conditional boundary to IFGE → KILLED
5. handleAttrValuePending : changed conditional boundary to IFLE → KILLED
6. handleAttrValuePending : changed conditional boundary to IFLT → KILLED
|
if (ch == 0) { // wasn't resolved |
|
4076
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
4077
|
|
} |
|
4078
|
|
|
|
4079
|
1
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED
|
char[] attrBuffer = _attrCollector.continueValue(); |
|
4080
|
|
// Ok; does it need a surrogate though? (over 16 bits) |
|
4081
|
12
1. handleAttrValuePending : changed conditional boundary to IFGE → SURVIVED
2. handleAttrValuePending : changed conditional boundary to IFLE → SURVIVED
3. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED
7. handleAttrValuePending : Replaced Shift Right with Shift Left → KILLED
8. handleAttrValuePending : negated conditional → KILLED
9. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleAttrValuePending : changed conditional boundary to IFGT → KILLED
11. handleAttrValuePending : changed conditional boundary to IFLT → KILLED
12. handleAttrValuePending : changed conditional boundary to IFNE → KILLED
|
if ((ch >> 16) != 0) { |
|
4082
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. handleAttrValuePending : Replaced operate with second operand → NO_COVERAGE
6. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch -= 0x10000; |
|
4083
|
8
1. handleAttrValuePending : changed conditional boundary → NO_COVERAGE
2. handleAttrValuePending : negated conditional → NO_COVERAGE
3. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
4. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValuePending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_elemAttrPtr >= attrBuffer.length) { |
|
4084
|
1
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
attrBuffer = _attrCollector.valueBufferFull(); |
|
4085
|
|
} |
|
4086
|
20
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
11. handleAttrValuePending : Replaced operate with second operand → NO_COVERAGE
12. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
13. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
14. handleAttrValuePending : Replaced Shift Right with Shift Left → NO_COVERAGE
15. handleAttrValuePending : Replaced bitwise OR with AND → NO_COVERAGE
16. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
20. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemAttrPtr++] = (char) (0xD800 | (ch >> 10)); |
|
4087
|
12
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. handleAttrValuePending : Replaced bitwise AND with OR → NO_COVERAGE
10. handleAttrValuePending : Replaced bitwise OR with AND → NO_COVERAGE
11. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = 0xDC00 | (ch & 0x3FF); |
|
4088
|
|
} |
|
4089
|
8
1. handleAttrValuePending : changed conditional boundary → SURVIVED
2. handleAttrValuePending : negated conditional → SURVIVED
3. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
4. handleAttrValuePending : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleAttrValuePending : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → SURVIVED
7. handleAttrValuePending : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleAttrValuePending : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_elemAttrPtr >= attrBuffer.length) { |
|
4090
|
1
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
attrBuffer = _attrCollector.valueBufferFull(); |
|
4091
|
|
} |
|
4092
|
8
1. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
2. handleAttrValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
3. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleAttrValuePending : Replaced operate with second operand → KILLED
8. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
attrBuffer[_elemAttrPtr++] = (char) ch; |
|
4093
|
6
1. handleAttrValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleAttrValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleAttrValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleAttrValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleAttrValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleAttrValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; // done it! |
|
4094
|
|
} |
|
4095
|
|
|
|
4096
|
|
private final int handleAttrValuePendingUTF8() throws XMLStreamException |
|
4097
|
|
{ |
|
4098
|
|
// note: we know there must be at least one byte available at this point |
|
4099
|
1
1. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
int c = _pendingInput; |
|
4100
|
6
1. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
4101
|
|
|
|
4102
|
|
// Let's just re-test the first pending byte (in LSB): |
|
4103
|
8
1. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
7. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → KILLED
8. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
switch (_charTypes.TEXT_CHARS[c & 0xFF]) { |
|
4104
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
4105
|
|
// Easy: must have just one byte, did get another one: |
|
4106
|
1
1. handleAttrValuePendingUTF8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return decodeUtf8_2(c); |
|
4107
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
4108
|
|
{ |
|
4109
|
|
// Ok... so do we have one or two pending bytes? |
|
4110
|
15
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int next = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4111
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced Shift Right with Shift Left → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
int c2 = (c >> 8); |
|
4112
|
6
1. handleAttrValuePendingUTF8 : negated conditional → NO_COVERAGE
2. handleAttrValuePendingUTF8 : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleAttrValuePendingUTF8 : changed conditional boundary to IFGE → NO_COVERAGE
4. handleAttrValuePendingUTF8 : changed conditional boundary to IFGT → NO_COVERAGE
5. handleAttrValuePendingUTF8 : changed conditional boundary to IFLE → NO_COVERAGE
6. handleAttrValuePendingUTF8 : changed conditional boundary to IFLT → NO_COVERAGE
|
if (c2 == 0) { // just one; need two more |
|
4113
|
9
1. handleAttrValuePendingUTF8 : changed conditional boundary → NO_COVERAGE
2. handleAttrValuePendingUTF8 : negated conditional → NO_COVERAGE
3. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { // but got only one |
|
4114
|
8
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Replaced bitwise OR with AND → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c | (next << 8); |
|
4115
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return 0; |
|
4116
|
|
} |
|
4117
|
15
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4118
|
|
c = decodeUtf8_3(c, next, c3); |
|
4119
|
|
} else { // had two, got one, bueno: |
|
4120
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = decodeUtf8_3((c & 0xFF), c2, next); |
|
4121
|
|
} |
|
4122
|
1
1. handleAttrValuePendingUTF8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return c; |
|
4123
|
|
} |
|
4124
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
4125
|
|
{ |
|
4126
|
15
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int next = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4127
|
|
// Only had one? |
|
4128
|
12
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced Shift Right with Shift Left → NO_COVERAGE
6. handleAttrValuePendingUTF8 : negated conditional → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : changed conditional boundary to IFEQ → NO_COVERAGE
9. handleAttrValuePendingUTF8 : changed conditional boundary to IFGE → NO_COVERAGE
10. handleAttrValuePendingUTF8 : changed conditional boundary to IFGT → NO_COVERAGE
11. handleAttrValuePendingUTF8 : changed conditional boundary to IFLE → NO_COVERAGE
12. handleAttrValuePendingUTF8 : changed conditional boundary to IFLT → NO_COVERAGE
|
if ((c >> 8) == 0) { // ok, so need 3 more |
|
4129
|
9
1. handleAttrValuePendingUTF8 : changed conditional boundary → NO_COVERAGE
2. handleAttrValuePendingUTF8 : negated conditional → NO_COVERAGE
3. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { // just have 1 |
|
4130
|
8
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Replaced bitwise OR with AND → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c | (next << 8); |
|
4131
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return 0; |
|
4132
|
|
} |
|
4133
|
15
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int c2 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4134
|
9
1. handleAttrValuePendingUTF8 : changed conditional boundary → NO_COVERAGE
2. handleAttrValuePendingUTF8 : negated conditional → NO_COVERAGE
3. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { // almost, got 2 |
|
4135
|
15
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
9. handleAttrValuePendingUTF8 : Replaced Shift Left with Shift Right → NO_COVERAGE
10. handleAttrValuePendingUTF8 : Replaced bitwise OR with AND → NO_COVERAGE
11. handleAttrValuePendingUTF8 : Replaced Shift Left with Shift Right → NO_COVERAGE
12. handleAttrValuePendingUTF8 : Replaced bitwise OR with AND → NO_COVERAGE
13. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c | (next << 8) | (c2 << 16); |
|
4136
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return 0; |
|
4137
|
|
} |
|
4138
|
15
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4139
|
|
c = decodeUtf8_4(c, next, c2, c3); |
|
4140
|
|
} else { // had two or three |
|
4141
|
12
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
9. handleAttrValuePendingUTF8 : Replaced Shift Right with Shift Left → NO_COVERAGE
10. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
int c2 = (c >> 8) & 0xFF; |
|
4142
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced Shift Right with Shift Left → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
int c3 = (c >> 16); |
|
4143
|
|
|
|
4144
|
6
1. handleAttrValuePendingUTF8 : negated conditional → NO_COVERAGE
2. handleAttrValuePendingUTF8 : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleAttrValuePendingUTF8 : changed conditional boundary to IFGE → NO_COVERAGE
4. handleAttrValuePendingUTF8 : changed conditional boundary to IFGT → NO_COVERAGE
5. handleAttrValuePendingUTF8 : changed conditional boundary to IFLE → NO_COVERAGE
6. handleAttrValuePendingUTF8 : changed conditional boundary to IFLT → NO_COVERAGE
|
if (c3 == 0) { // just two |
|
4145
|
9
1. handleAttrValuePendingUTF8 : changed conditional boundary → NO_COVERAGE
2. handleAttrValuePendingUTF8 : negated conditional → NO_COVERAGE
3. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleAttrValuePendingUTF8 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { // one short |
|
4146
|
8
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Replaced bitwise OR with AND → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c | (next << 16); |
|
4147
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return 0; |
|
4148
|
|
} |
|
4149
|
15
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleAttrValuePendingUTF8 : Replaced operate with second operand → NO_COVERAGE
9. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
11. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleAttrValuePendingUTF8 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
c3 = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4150
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = decodeUtf8_4((c & 0xFF), c2, next, c3); |
|
4151
|
|
} else { // had three, got last |
|
4152
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Replaced bitwise AND with OR → NO_COVERAGE
6. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = decodeUtf8_4((c & 0xFF), c2, c3, next); |
|
4153
|
|
} |
|
4154
|
|
} |
|
4155
|
1
1. handleAttrValuePendingUTF8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return c; |
|
4156
|
|
} |
|
4157
|
|
default: // should never occur: |
|
4158
|
|
throwInternal(); |
|
4159
|
6
1. handleAttrValuePendingUTF8 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleAttrValuePendingUTF8 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleAttrValuePendingUTF8 : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleAttrValuePendingUTF8 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleAttrValuePendingUTF8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return 0; // never gets here |
|
4160
|
|
} |
|
4161
|
|
} |
|
4162
|
|
|
|
4163
|
|
private final int handleDecEntityInAttribute(boolean starting) throws XMLStreamException |
|
4164
|
|
{ |
|
4165
|
9
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDecEntityInAttribute : Replaced operate with second operand → KILLED
9. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); // we know one is available |
|
4166
|
6
1. handleDecEntityInAttribute : negated conditional → SURVIVED
2. handleDecEntityInAttribute : changed conditional boundary to IFGE → SURVIVED
3. handleDecEntityInAttribute : changed conditional boundary to IFGT → SURVIVED
4. handleDecEntityInAttribute : changed conditional boundary to IFLE → SURVIVED
5. handleDecEntityInAttribute : changed conditional boundary to IFNE → SURVIVED
6. handleDecEntityInAttribute : changed conditional boundary to IFLT → KILLED
|
if (starting) { |
|
4167
|
|
int ch = (int) b; |
|
4168
|
25
1. handleDecEntityInAttribute : changed conditional boundary → SURVIVED
2. handleDecEntityInAttribute : changed conditional boundary → SURVIVED
3. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPLT → SURVIVED
5. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
6. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
13. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED
14. handleDecEntityInAttribute : negated conditional → KILLED
15. handleDecEntityInAttribute : negated conditional → KILLED
16. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
19. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
20. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
21. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
22. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
23. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
24. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
25. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPNE → KILLED
|
if (ch < INT_0 || ch > INT_9) { // invalid entity |
|
4169
|
1
1. handleDecEntityInAttribute : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected a digit (0 - 9) for character entity"); |
|
4170
|
|
} |
|
4171
|
6
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted -64 with 1 → KILLED
6. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_DEC_DIGIT; |
|
4172
|
7
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
6. handleDecEntityInAttribute : Replaced operate with second operand → KILLED
7. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_entityValue = ch - INT_0; |
|
4173
|
9
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleDecEntityInAttribute : changed conditional boundary → KILLED
5. handleDecEntityInAttribute : negated conditional → KILLED
6. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
8. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
9. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4174
|
6
1. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDecEntityInAttribute : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
4175
|
|
} |
|
4176
|
9
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDecEntityInAttribute : Replaced operate with second operand → KILLED
9. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
4177
|
|
} |
|
4178
|
11
1. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGE → SURVIVED
2. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
6. handleDecEntityInAttribute : negated conditional → KILLED
7. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
8. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
9. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
10. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPLT → KILLED
11. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPNE → KILLED
|
while (b != BYTE_SEMICOLON) { |
|
4179
|
6
1. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
5. handleDecEntityInAttribute : Replaced operate with second operand → KILLED
6. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int ch = ((int) b) - INT_0; |
|
4180
|
20
1. handleDecEntityInAttribute : changed conditional boundary → SURVIVED
2. handleDecEntityInAttribute : changed conditional boundary → SURVIVED
3. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleDecEntityInAttribute : changed conditional boundary to IFEQ → SURVIVED
6. handleDecEntityInAttribute : changed conditional boundary to IFLE → SURVIVED
7. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED
11. handleDecEntityInAttribute : negated conditional → KILLED
12. handleDecEntityInAttribute : negated conditional → KILLED
13. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
15. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
16. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
17. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
18. handleDecEntityInAttribute : changed conditional boundary to IFGE → KILLED
19. handleDecEntityInAttribute : changed conditional boundary to IFGT → KILLED
20. handleDecEntityInAttribute : changed conditional boundary to IFNE → KILLED
|
if (ch < 0 || ch > 9) { // invalid entity |
|
4181
|
1
1. handleDecEntityInAttribute : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected a digit (0 - 9) for character entity"); |
|
4182
|
|
} |
|
4183
|
8
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
6. handleDecEntityInAttribute : Replaced operate with second operand → KILLED
7. handleDecEntityInAttribute : Replaced operate with second operand → KILLED
8. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int value = (_entityValue * 10) + ch; |
|
4184
|
1
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
_entityValue = value; |
|
4185
|
13
1. handleDecEntityInAttribute : changed conditional boundary → SURVIVED
2. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPLT → SURVIVED
3. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED
8. handleDecEntityInAttribute : negated conditional → KILLED
9. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
12. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
13. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
|
if (value > MAX_UNICODE_CHAR) { // Overflow? |
|
4186
|
1
1. handleDecEntityInAttribute : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
reportEntityOverflow(); |
|
4187
|
|
} |
|
4188
|
9
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleDecEntityInAttribute : changed conditional boundary → KILLED
5. handleDecEntityInAttribute : negated conditional → KILLED
6. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
8. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
9. handleDecEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4189
|
6
1. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleDecEntityInAttribute : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
4190
|
|
} |
|
4191
|
9
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleDecEntityInAttribute : Replaced operate with second operand → KILLED
9. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
4192
|
|
} |
|
4193
|
2
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyXmlChar → SURVIVED
|
verifyXmlChar(_entityValue); |
|
4194
|
6
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleDecEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleDecEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleDecEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleDecEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
4195
|
2
1. handleDecEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleDecEntityInAttribute : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _entityValue; |
|
4196
|
|
} |
|
4197
|
|
|
|
4198
|
|
private final int handleHexEntityInAttribute(boolean starting) |
|
4199
|
|
throws XMLStreamException |
|
4200
|
|
{ |
|
4201
|
9
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleHexEntityInAttribute : Replaced operate with second operand → KILLED
9. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); // we know one is available |
|
4202
|
6
1. handleHexEntityInAttribute : changed conditional boundary to IFLE → SURVIVED
2. handleHexEntityInAttribute : negated conditional → KILLED
3. handleHexEntityInAttribute : changed conditional boundary to IFGE → KILLED
4. handleHexEntityInAttribute : changed conditional boundary to IFGT → KILLED
5. handleHexEntityInAttribute : changed conditional boundary to IFLT → KILLED
6. handleHexEntityInAttribute : changed conditional boundary to IFNE → KILLED
|
if (starting) { |
|
4203
|
|
int ch = (int) b; |
|
4204
|
25
1. handleHexEntityInAttribute : changed conditional boundary → SURVIVED
2. handleHexEntityInAttribute : changed conditional boundary → SURVIVED
3. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPLT → SURVIVED
5. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
6. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
13. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED
14. handleHexEntityInAttribute : negated conditional → KILLED
15. handleHexEntityInAttribute : negated conditional → KILLED
16. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
19. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
20. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
21. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
22. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
23. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
24. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
25. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → KILLED
|
if (ch < INT_0 || ch > INT_9) { // invalid entity |
|
4205
|
1
1. handleHexEntityInAttribute : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected a hex digit (0-9a-fA-F) for character entity"); |
|
4206
|
|
} |
|
4207
|
6
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted -65 with 1 → KILLED
6. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_HEX_DIGIT; |
|
4208
|
7
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
6. handleHexEntityInAttribute : Replaced operate with second operand → KILLED
7. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_entityValue = ch - INT_0; |
|
4209
|
9
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleHexEntityInAttribute : changed conditional boundary → KILLED
5. handleHexEntityInAttribute : negated conditional → KILLED
6. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
8. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
9. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4210
|
6
1. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleHexEntityInAttribute : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
4211
|
|
} |
|
4212
|
9
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleHexEntityInAttribute : Replaced operate with second operand → KILLED
9. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
4213
|
|
} |
|
4214
|
11
1. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED
5. handleHexEntityInAttribute : negated conditional → KILLED
6. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
7. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
8. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
9. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
10. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPLT → KILLED
11. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → KILLED
|
while (b != BYTE_SEMICOLON) { |
|
4215
|
|
int ch = (int) b; |
|
4216
|
23
1. handleHexEntityInAttribute : changed conditional boundary → SURVIVED
2. handleHexEntityInAttribute : changed conditional boundary → SURVIVED
3. handleHexEntityInAttribute : negated conditional → SURVIVED
4. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → SURVIVED
7. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → SURVIVED
8. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → SURVIVED
9. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
10. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
11. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
15. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED
18. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED
19. handleHexEntityInAttribute : negated conditional → KILLED
20. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
21. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
22. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
23. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPLT → KILLED
|
if (ch <= INT_9 && ch >= INT_0) { |
|
4217
|
5
1. handleHexEntityInAttribute : Changed increment from -48 to 48 → NO_COVERAGE
2. handleHexEntityInAttribute : UOI Mutator: Added unary decrement -48 -> -49 to local variable → NO_COVERAGE
3. handleHexEntityInAttribute : UOI Mutator: Added unary increment -48 -> -47 to local variable → NO_COVERAGE
4. handleHexEntityInAttribute : UOI Mutator: Removed unary increment of local variable → NO_COVERAGE
5. handleHexEntityInAttribute : UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
ch -= INT_0; |
|
4218
|
23
1. handleHexEntityInAttribute : changed conditional boundary → SURVIVED
2. handleHexEntityInAttribute : changed conditional boundary → SURVIVED
3. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → SURVIVED
6. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 70 with 1 → KILLED
13. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
14. handleHexEntityInAttribute : negated conditional → KILLED
15. handleHexEntityInAttribute : negated conditional → KILLED
16. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
17. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
19. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
20. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
21. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPLT → KILLED
22. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → KILLED
23. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → KILLED
|
} else if (ch <= INT_F && ch >= INT_A) { |
|
4219
|
12
1. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
8. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
9. handleHexEntityInAttribute : Replaced operate with second operand → KILLED
10. handleHexEntityInAttribute : Replaced operate with second operand → KILLED
11. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = 10 + (ch - INT_A); |
|
4220
|
23
1. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 102 with 1 → NO_COVERAGE
8. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 97 with 1 → NO_COVERAGE
9. handleHexEntityInAttribute : changed conditional boundary → NO_COVERAGE
10. handleHexEntityInAttribute : changed conditional boundary → NO_COVERAGE
11. handleHexEntityInAttribute : negated conditional → NO_COVERAGE
12. handleHexEntityInAttribute : negated conditional → NO_COVERAGE
13. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
14. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
15. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
16. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
17. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
18. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
19. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
20. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
21. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
22. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
23. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
} else if (ch <= INT_f && ch >= INT_a) { |
|
4221
|
12
1. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
8. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 97 with 1 → NO_COVERAGE
9. handleHexEntityInAttribute : Replaced operate with second operand → NO_COVERAGE
10. handleHexEntityInAttribute : Replaced operate with second operand → NO_COVERAGE
11. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = 10 + (ch - INT_a); |
|
4222
|
|
} else { |
|
4223
|
1
1. handleHexEntityInAttribute : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(decodeCharForError(b), " expected a hex digit (0-9a-fA-F) for character entity"); |
|
4224
|
|
} |
|
4225
|
8
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED
6. handleHexEntityInAttribute : Replaced operate with second operand → KILLED
7. handleHexEntityInAttribute : Replaced Shift Left with Shift Right → KILLED
8. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int value = (_entityValue << 4) + ch; |
|
4226
|
1
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
_entityValue = value; |
|
4227
|
13
1. handleHexEntityInAttribute : changed conditional boundary → SURVIVED
2. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPLT → SURVIVED
3. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED
8. handleHexEntityInAttribute : negated conditional → KILLED
9. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
12. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
13. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
|
if (value > MAX_UNICODE_CHAR) { // Overflow? |
|
4228
|
1
1. handleHexEntityInAttribute : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
reportEntityOverflow(); |
|
4229
|
|
} |
|
4230
|
9
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleHexEntityInAttribute : changed conditional boundary → KILLED
5. handleHexEntityInAttribute : negated conditional → KILLED
6. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGE → KILLED
8. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
9. handleHexEntityInAttribute : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4231
|
6
1. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleHexEntityInAttribute : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return 0; |
|
4232
|
|
} |
|
4233
|
9
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleHexEntityInAttribute : Replaced operate with second operand → KILLED
9. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
b = _inputBuffer.get(_inputPtr++); |
|
4234
|
|
} |
|
4235
|
2
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyXmlChar → SURVIVED
|
verifyXmlChar(_entityValue); |
|
4236
|
6
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleHexEntityInAttribute : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleHexEntityInAttribute : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleHexEntityInAttribute : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handleHexEntityInAttribute : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
4237
|
2
1. handleHexEntityInAttribute : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
2. handleHexEntityInAttribute : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return _entityValue; |
|
4238
|
|
} |
|
4239
|
|
|
|
4240
|
|
/** |
|
4241
|
|
* Method called to handle entity encountered inside attribute value. |
|
4242
|
|
* |
|
4243
|
|
* @return Value of expanded character entity, if processed (which must be |
|
4244
|
|
* 1 or above); 0 for general entity, or -1 for "not enough input" |
|
4245
|
|
*/ |
|
4246
|
|
protected int handleEntityInAttributeValue() throws XMLStreamException |
|
4247
|
|
{ |
|
4248
|
9
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEntityInAttributeValue : changed conditional boundary → KILLED
5. handleEntityInAttributeValue : negated conditional → KILLED
6. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4249
|
6
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -60 with 1 → KILLED
6. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP; |
|
4250
|
6
1. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityInAttributeValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return -1; |
|
4251
|
|
} |
|
4252
|
9
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. handleEntityInAttributeValue : Replaced operate with second operand → KILLED
9. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
byte b = _inputBuffer.get(_inputPtr++); |
|
4253
|
11
1. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED
7. handleEntityInAttributeValue : negated conditional → KILLED
8. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPEQ → KILLED
10. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGE → KILLED
11. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPLT → KILLED
|
if (b == BYTE_HASH) { // numeric character entity |
|
4254
|
6
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -61 with 1 → KILLED
6. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP_HASH; |
|
4255
|
9
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEntityInAttributeValue : changed conditional boundary → KILLED
5. handleEntityInAttributeValue : negated conditional → KILLED
6. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4256
|
6
1. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityInAttributeValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return -1; |
|
4257
|
|
} |
|
4258
|
|
int ch; |
|
4259
|
13
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED
8. handleEntityInAttributeValue : negated conditional → KILLED
9. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPEQ → KILLED
11. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGE → KILLED
12. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → KILLED
13. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_x) { |
|
4260
|
6
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -62 with 1 → KILLED
6. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP_HASH_X; |
|
4261
|
8
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleEntityInAttributeValue : Replaced operate with second operand → KILLED
8. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_inputPtr; |
|
4262
|
9
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleEntityInAttributeValue : changed conditional boundary → KILLED
5. handleEntityInAttributeValue : negated conditional → KILLED
6. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGE → KILLED
8. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → KILLED
9. handleEntityInAttributeValue : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4263
|
6
1. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityInAttributeValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return -1; |
|
4264
|
|
} |
|
4265
|
5
1. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleHexEntityInAttribute(true); |
|
4266
|
|
} else { |
|
4267
|
5
1. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
ch = handleDecEntityInAttribute(true); |
|
4268
|
|
} |
|
4269
|
6
1. handleEntityInAttributeValue : changed conditional boundary to IFGT → SURVIVED
2. handleEntityInAttributeValue : negated conditional → KILLED
3. handleEntityInAttributeValue : changed conditional boundary to IFEQ → KILLED
4. handleEntityInAttributeValue : changed conditional boundary to IFGE → KILLED
5. handleEntityInAttributeValue : changed conditional boundary to IFLE → KILLED
6. handleEntityInAttributeValue : changed conditional boundary to IFLT → KILLED
|
if (ch == 0) { |
|
4270
|
6
1. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityInAttributeValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return -1; |
|
4271
|
|
} |
|
4272
|
1
1. handleEntityInAttributeValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return ch; |
|
4273
|
|
} |
|
4274
|
|
PName entityName = parseNewEntityName(b); |
|
4275
|
1
1. handleEntityInAttributeValue : negated conditional → KILLED
|
if (entityName == null) { |
|
4276
|
6
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -63 with 1 → KILLED
6. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = PENDING_STATE_ATTR_VALUE_ENTITY_NAME; |
|
4277
|
6
1. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
5. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleEntityInAttributeValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return -1; |
|
4278
|
|
} |
|
4279
|
|
int ch = decodeGeneralEntity(entityName); |
|
4280
|
6
1. handleEntityInAttributeValue : changed conditional boundary to IFLE → SURVIVED
2. handleEntityInAttributeValue : changed conditional boundary to IFLT → SURVIVED
3. handleEntityInAttributeValue : negated conditional → KILLED
4. handleEntityInAttributeValue : changed conditional boundary to IFGE → KILLED
5. handleEntityInAttributeValue : changed conditional boundary to IFGT → KILLED
6. handleEntityInAttributeValue : changed conditional boundary to IFNE → KILLED
|
if (ch != 0) { |
|
4281
|
1
1. handleEntityInAttributeValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return ch; |
|
4282
|
|
} |
|
4283
|
1
1. handleEntityInAttributeValue : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
_tokenName = entityName; |
|
4284
|
6
1. handleEntityInAttributeValue : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleEntityInAttributeValue : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleEntityInAttributeValue : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleEntityInAttributeValue : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleEntityInAttributeValue : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleEntityInAttributeValue : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return 0; |
|
4285
|
|
} |
|
4286
|
|
|
|
4287
|
|
@Override |
|
4288
|
|
protected boolean handleNsDecl() throws XMLStreamException |
|
4289
|
|
{ |
|
4290
|
2
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED
2. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldATTR_CHARS mutated with null check on object → SURVIVED
|
final int[] TYPES = _charTypes.ATTR_CHARS; |
|
4291
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → SURVIVED
|
char[] attrBuffer = _nameBuffer; |
|
4292
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
final int quoteChar = (int) _elemAttrQuote; |
|
4293
|
|
|
|
4294
|
|
// First; any pending input? |
|
4295
|
7
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handleNsDecl : changed conditional boundary to IFGE → SURVIVED
3. handleNsDecl : changed conditional boundary to IFLE → SURVIVED
4. handleNsDecl : negated conditional → KILLED
5. handleNsDecl : changed conditional boundary to IFGT → KILLED
6. handleNsDecl : changed conditional boundary to IFLT → KILLED
7. handleNsDecl : changed conditional boundary to IFNE → KILLED
|
if (_pendingInput != 0) { |
|
4296
|
6
1. handleNsDecl : negated conditional → NO_COVERAGE
2. handleNsDecl : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleNsDecl : changed conditional boundary to IFGE → NO_COVERAGE
4. handleNsDecl : changed conditional boundary to IFGT → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IFLE → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handleNsValuePending()) { |
|
4297
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4298
|
|
} |
|
4299
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = 0; |
|
4300
|
|
} |
|
4301
|
|
|
|
4302
|
|
value_loop: |
|
4303
|
|
while (true) { |
|
4304
|
|
int c; |
|
4305
|
|
|
|
4306
|
|
ascii_loop: |
|
4307
|
|
while (true) { |
|
4308
|
9
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. handleNsDecl : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleNsDecl : changed conditional boundary → TIMED_OUT
5. handleNsDecl : negated conditional → KILLED
6. handleNsDecl : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleNsDecl : changed conditional boundary to IF_ICMPGE → KILLED
8. handleNsDecl : changed conditional boundary to IF_ICMPGT → KILLED
9. handleNsDecl : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4309
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleNsDecl : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return false; |
|
4310
|
|
} |
|
4311
|
8
1. handleNsDecl : changed conditional boundary → SURVIVED
2. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
3. handleNsDecl : changed conditional boundary to IF_ICMPNE → SURVIVED
4. handleNsDecl : negated conditional → KILLED
5. handleNsDecl : changed conditional boundary to IF_ICMPEQ → KILLED
6. handleNsDecl : changed conditional boundary to IF_ICMPGE → KILLED
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → KILLED
8. handleNsDecl : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_elemNsPtr >= attrBuffer.length) { |
|
4312
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
_nameBuffer = attrBuffer = DataUtil.growArrayBy(attrBuffer, attrBuffer.length); |
|
4313
|
|
} |
|
4314
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
int max = _inputEnd; |
|
4315
|
|
{ |
|
4316
|
4
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
3. handleNsDecl : Replaced operate with second operand → KILLED
4. handleNsDecl : Replaced operate with second operand → KILLED
|
int max2 = _inputPtr + (attrBuffer.length - _elemNsPtr); |
|
4317
|
7
1. handleNsDecl : changed conditional boundary → SURVIVED
2. handleNsDecl : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleNsDecl : changed conditional boundary to IF_ICMPGT → SURVIVED
4. handleNsDecl : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handleNsDecl : negated conditional → KILLED
6. handleNsDecl : changed conditional boundary to IF_ICMPEQ → KILLED
7. handleNsDecl : changed conditional boundary to IF_ICMPLT → KILLED
|
if (max2 < max) { |
|
4318
|
|
max = max2; |
|
4319
|
|
} |
|
4320
|
|
} |
|
4321
|
8
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handleNsDecl : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. handleNsDecl : negated conditional → TIMED_OUT
4. handleNsDecl : changed conditional boundary to IF_ICMPLT → TIMED_OUT
5. handleNsDecl : changed conditional boundary to IF_ICMPNE → TIMED_OUT
6. handleNsDecl : changed conditional boundary → KILLED
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → KILLED
8. handleNsDecl : changed conditional boundary to IF_ICMPGT → KILLED
|
while (_inputPtr < max) { |
|
4322
|
15
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. handleNsDecl : Replaced operate with second operand → KILLED
12. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. handleNsDecl : Replaced bitwise AND with OR → KILLED
14. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4323
|
6
1. handleNsDecl : changed conditional boundary to IFLE → SURVIVED
2. handleNsDecl : changed conditional boundary to IFLT → SURVIVED
3. handleNsDecl : negated conditional → KILLED
4. handleNsDecl : changed conditional boundary to IFGE → KILLED
5. handleNsDecl : changed conditional boundary to IFGT → KILLED
6. handleNsDecl : changed conditional boundary to IFNE → KILLED
|
if (TYPES[c] != 0) { |
|
4324
|
|
break ascii_loop; |
|
4325
|
|
} |
|
4326
|
8
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
2. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
3. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handleNsDecl : Replaced operate with second operand → KILLED
8. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
attrBuffer[_elemNsPtr++] = (char) c; |
|
4327
|
|
} |
|
4328
|
|
} |
|
4329
|
|
|
|
4330
|
|
switch (TYPES[c]) { |
|
4331
|
|
case XmlCharTypes.CT_INVALID: |
|
4332
|
|
c = handleInvalidXmlChar(c); |
|
4333
|
|
case XmlCharTypes.CT_WS_CR: |
|
4334
|
9
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
4335
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_CR; |
|
4336
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4337
|
|
} |
|
4338
|
13
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
5. handleNsDecl : negated conditional → NO_COVERAGE
6. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleNsDecl : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleNsDecl : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
4339
|
8
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
6. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
4340
|
|
} |
|
4341
|
|
// fall through |
|
4342
|
|
case XmlCharTypes.CT_WS_LF: |
|
4343
|
1
1. handleNsDecl : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
markLF(); |
|
4344
|
|
// fall through |
|
4345
|
|
case XmlCharTypes.CT_WS_TAB: |
|
4346
|
|
// Plus, need to convert these all to simple space |
|
4347
|
5
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = INT_SPACE; |
|
4348
|
|
break; |
|
4349
|
|
case XmlCharTypes.CT_MULTIBYTE_2: |
|
4350
|
9
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
4351
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
4352
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4353
|
|
} |
|
4354
|
|
c = decodeUtf8_2(c); |
|
4355
|
|
break; |
|
4356
|
|
case XmlCharTypes.CT_MULTIBYTE_3: |
|
4357
|
15
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
6. handleNsDecl : changed conditional boundary → NO_COVERAGE
7. handleNsDecl : negated conditional → NO_COVERAGE
8. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleNsDecl : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 2) { |
|
4358
|
10
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsDecl : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 2 bytes available |
|
4359
|
15
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
9. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleNsDecl : Replaced bitwise AND with OR → NO_COVERAGE
11. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4360
|
7
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleNsDecl : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleNsDecl : Replaced bitwise OR with AND → NO_COVERAGE
7. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
4361
|
|
} |
|
4362
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
4363
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4364
|
|
} |
|
4365
|
|
c = decodeUtf8_3(c); |
|
4366
|
|
break; |
|
4367
|
|
case XmlCharTypes.CT_MULTIBYTE_4: |
|
4368
|
15
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE
6. handleNsDecl : changed conditional boundary → NO_COVERAGE
7. handleNsDecl : negated conditional → NO_COVERAGE
8. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
9. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
10. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
11. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
12. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
14. handleNsDecl : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
15. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if ((_inputEnd - _inputPtr) < 3) { |
|
4369
|
10
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsDecl : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // at least 2 bytes? |
|
4370
|
15
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
9. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleNsDecl : Replaced bitwise AND with OR → NO_COVERAGE
11. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
int d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4371
|
7
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE
5. handleNsDecl : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleNsDecl : Replaced bitwise OR with AND → NO_COVERAGE
7. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 8); |
|
4372
|
10
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
4. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsDecl : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
10. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputEnd > _inputPtr) { // 3 bytes? |
|
4373
|
15
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
9. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
10. handleNsDecl : Replaced bitwise AND with OR → NO_COVERAGE
11. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
14. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
15. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
d = (int) _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4374
|
7
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleNsDecl : Replaced Shift Left with Shift Right → NO_COVERAGE
6. handleNsDecl : Replaced bitwise OR with AND → NO_COVERAGE
7. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c |= (d << 16); |
|
4375
|
|
} |
|
4376
|
|
} |
|
4377
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = c; |
|
4378
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4379
|
|
} |
|
4380
|
|
c = decodeUtf8_4(c); |
|
4381
|
|
// Let's add first part right away: |
|
4382
|
20
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
11. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
12. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
13. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
14. handleNsDecl : Replaced Shift Right with Shift Left → NO_COVERAGE
15. handleNsDecl : Replaced bitwise OR with AND → NO_COVERAGE
16. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
20. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemNsPtr++] = (char) (0xD800 | (c >> 10)); |
|
4383
|
12
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. handleNsDecl : Replaced bitwise AND with OR → NO_COVERAGE
10. handleNsDecl : Replaced bitwise OR with AND → NO_COVERAGE
11. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
4384
|
8
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
4. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_elemNsPtr >= attrBuffer.length) { |
|
4385
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
_nameBuffer = attrBuffer = DataUtil.growArrayBy(attrBuffer, attrBuffer.length); |
|
4386
|
|
} |
|
4387
|
|
break; |
|
4388
|
|
case XmlCharTypes.CT_MULTIBYTE_N: |
|
4389
|
1
1. handleNsDecl : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
reportInvalidInitial(c); |
|
4390
|
|
case XmlCharTypes.CT_LT: |
|
4391
|
1
1. handleNsDecl : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(c, "'<' not allowed in attribute value"); |
|
4392
|
|
case XmlCharTypes.CT_AMP: |
|
4393
|
|
c = handleEntityInAttributeValue(); |
|
4394
|
7
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : changed conditional boundary to IFEQ → NO_COVERAGE
4. handleNsDecl : changed conditional boundary to IFGE → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IFLE → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IFLT → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IFNE → NO_COVERAGE
|
if (c <= 0) { // general entity; should never happen |
|
4395
|
7
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : changed conditional boundary to IFEQ → NO_COVERAGE
4. handleNsDecl : changed conditional boundary to IFGT → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IFLE → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IFLT → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IFNE → NO_COVERAGE
|
if (c < 0) { // end-of-input |
|
4396
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4397
|
|
} |
|
4398
|
7
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE
7. handleNsDecl : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
reportUnexpandedEntityInAttr(_elemAttrName, true); |
|
4399
|
|
} |
|
4400
|
|
// Ok; does it need a surrogate though? (over 16 bits) |
|
4401
|
12
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleNsDecl : Replaced Shift Right with Shift Left → NO_COVERAGE
6. handleNsDecl : negated conditional → NO_COVERAGE
7. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleNsDecl : changed conditional boundary to IFGE → NO_COVERAGE
9. handleNsDecl : changed conditional boundary to IFGT → NO_COVERAGE
10. handleNsDecl : changed conditional boundary to IFLE → NO_COVERAGE
11. handleNsDecl : changed conditional boundary to IFLT → NO_COVERAGE
12. handleNsDecl : changed conditional boundary to IFNE → NO_COVERAGE
|
if ((c >> 16) != 0) { |
|
4402
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
6. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c -= 0x10000; |
|
4403
|
20
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
11. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
12. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
13. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
14. handleNsDecl : Replaced Shift Right with Shift Left → NO_COVERAGE
15. handleNsDecl : Replaced bitwise OR with AND → NO_COVERAGE
16. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
20. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemNsPtr++] = (char) (0xD800 | (c >> 10)); |
|
4404
|
12
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. handleNsDecl : Replaced bitwise AND with OR → NO_COVERAGE
10. handleNsDecl : Replaced bitwise OR with AND → NO_COVERAGE
11. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
c = 0xDC00 | (c & 0x3FF); |
|
4405
|
8
1. handleNsDecl : changed conditional boundary → NO_COVERAGE
2. handleNsDecl : negated conditional → NO_COVERAGE
3. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
4. handleNsDecl : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. handleNsDecl : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleNsDecl : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsDecl : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_elemNsPtr >= attrBuffer.length) { |
|
4406
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
_nameBuffer = attrBuffer = DataUtil.growArrayBy(attrBuffer, attrBuffer.length); |
|
4407
|
|
} |
|
4408
|
|
} |
|
4409
|
|
break; |
|
4410
|
|
case XmlCharTypes.CT_ATTR_QUOTE: |
|
4411
|
6
1. handleNsDecl : changed conditional boundary to IF_ICMPGT → SURVIVED
2. handleNsDecl : changed conditional boundary to IF_ICMPGT → SURVIVED
3. handleNsDecl : changed conditional boundary to IF_ICMPLT → SURVIVED
4. handleNsDecl : negated conditional → KILLED
5. handleNsDecl : changed conditional boundary to IF_ICMPEQ → KILLED
6. handleNsDecl : changed conditional boundary to IF_ICMPGE → KILLED
|
if (c == quoteChar) { |
|
4412
|
|
break value_loop; |
|
4413
|
|
} |
|
4414
|
|
|
|
4415
|
|
// default: |
|
4416
|
|
// Other chars are not important here... |
|
4417
|
|
} |
|
4418
|
|
// We know there's room for at least one char without checking |
|
4419
|
8
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsDecl : Replaced operate with second operand → NO_COVERAGE
6. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
8. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemNsPtr++] = (char) c; |
|
4420
|
|
} |
|
4421
|
|
|
|
4422
|
|
/* Simple optimization: for default ns removal (or, with |
|
4423
|
|
* ns 1.1, any other as well), will use empty value... no |
|
4424
|
|
* need to try to intern: |
|
4425
|
|
*/ |
|
4426
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
|
int attrPtr = _elemNsPtr; |
|
4427
|
6
1. handleNsDecl : changed conditional boundary to IFGE → SURVIVED
2. handleNsDecl : changed conditional boundary to IFGT → SURVIVED
3. handleNsDecl : negated conditional → KILLED
4. handleNsDecl : changed conditional boundary to IFEQ → KILLED
5. handleNsDecl : changed conditional boundary to IFLE → KILLED
6. handleNsDecl : changed conditional boundary to IFLT → KILLED
|
if (attrPtr == 0) { |
|
4428
|
2
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE
2. handleNsDecl : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::bindNs → NO_COVERAGE
|
bindNs(_elemAttrName, ""); |
|
4429
|
|
} else { |
|
4430
|
1
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_config mutated with null check on object → SURVIVED
|
String uri = _config.canonicalizeURI(attrBuffer, attrPtr); |
|
4431
|
2
1. handleNsDecl : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → SURVIVED
2. handleNsDecl : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::bindNs → KILLED
|
bindNs(_elemAttrName, uri); |
|
4432
|
|
} |
|
4433
|
6
1. handleNsDecl : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handleNsDecl : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handleNsDecl : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handleNsDecl : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handleNsDecl : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handleNsDecl : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
4434
|
|
} |
|
4435
|
|
|
|
4436
|
|
/** |
|
4437
|
|
* @return True if the partial information was succesfully handled; |
|
4438
|
|
* false if not |
|
4439
|
|
*/ |
|
4440
|
|
private final boolean handleNsValuePending() throws XMLStreamException |
|
4441
|
|
{ |
|
4442
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_pendingInput == PENDING_STATE_CR) { |
|
4443
|
6
1. handleNsValuePending : negated conditional → NO_COVERAGE
2. handleNsValuePending : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleNsValuePending : changed conditional boundary to IFGE → NO_COVERAGE
4. handleNsValuePending : changed conditional boundary to IFGT → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IFLE → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IFLT → NO_COVERAGE
|
if (!handlePartialCR()) { |
|
4444
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4445
|
|
} |
|
4446
|
1
1. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
char[] attrBuffer = _nameBuffer; |
|
4447
|
8
1. handleNsValuePending : changed conditional boundary → NO_COVERAGE
2. handleNsValuePending : negated conditional → NO_COVERAGE
3. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
4. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_elemNsPtr >= attrBuffer.length) { |
|
4448
|
1
1. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
_nameBuffer = attrBuffer = DataUtil.growArrayBy(attrBuffer, attrBuffer.length); |
|
4449
|
|
} |
|
4450
|
|
// All lfs get converted to spaces, in attribute values |
|
4451
|
13
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
8. handleNsValuePending : Replaced operate with second operand → NO_COVERAGE
9. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE
10. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
11. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
13. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemNsPtr++] = ' '; |
|
4452
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return true; |
|
4453
|
|
} |
|
4454
|
|
|
|
4455
|
|
// otherwise must be related to entity handling within attribute value |
|
4456
|
9
1. handleNsValuePending : changed conditional boundary → NO_COVERAGE
2. handleNsValuePending : negated conditional → NO_COVERAGE
3. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
4457
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4458
|
|
} |
|
4459
|
|
|
|
4460
|
|
int ch; |
|
4461
|
|
|
|
4462
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -60 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_pendingInput == PENDING_STATE_ATTR_VALUE_AMP) { |
|
4463
|
9
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Replaced operate with second operand → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
byte b = _inputBuffer.get(_inputPtr++); |
|
4464
|
11
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 35 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (b == BYTE_HASH) { // numeric character entity |
|
4465
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -61 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP_HASH; |
|
4466
|
9
1. handleNsValuePending : changed conditional boundary → NO_COVERAGE
2. handleNsValuePending : negated conditional → NO_COVERAGE
3. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
4467
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4468
|
|
} |
|
4469
|
13
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 120 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_inputBuffer.get(_inputPtr) == BYTE_x) { |
|
4470
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -62 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP_HASH_X; |
|
4471
|
8
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Replaced operate with second operand → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
4472
|
9
1. handleNsValuePending : changed conditional boundary → NO_COVERAGE
2. handleNsValuePending : negated conditional → NO_COVERAGE
3. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
4473
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4474
|
|
} |
|
4475
|
5
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = handleHexEntityInAttribute(true); |
|
4476
|
|
} else { |
|
4477
|
5
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = handleDecEntityInAttribute(true); |
|
4478
|
|
} |
|
4479
|
|
} else { |
|
4480
|
|
PName entityName = parseNewEntityName(b); |
|
4481
|
1
1. handleNsValuePending : negated conditional → NO_COVERAGE
|
if (entityName == null) { |
|
4482
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -63 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_ATTR_VALUE_ENTITY_NAME; |
|
4483
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4484
|
|
} |
|
4485
|
|
ch = decodeGeneralEntity(entityName); |
|
4486
|
6
1. handleNsValuePending : negated conditional → NO_COVERAGE
2. handleNsValuePending : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleNsValuePending : changed conditional boundary to IFGE → NO_COVERAGE
4. handleNsValuePending : changed conditional boundary to IFGT → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IFLE → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IFLT → NO_COVERAGE
|
if (ch == 0) { // can't have general entities within attribute values |
|
4487
|
1
1. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
_tokenName = entityName; |
|
4488
|
7
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE
7. handleNsValuePending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
reportUnexpandedEntityInAttr(_elemAttrName, false); |
|
4489
|
|
} |
|
4490
|
|
} |
|
4491
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -61 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_AMP_HASH) { |
|
4492
|
13
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 120 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
13. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
if (_inputBuffer.get(_inputPtr) == BYTE_x) { |
|
4493
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -62 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
_pendingInput = PENDING_STATE_ATTR_VALUE_AMP_HASH_X; |
|
4494
|
8
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Replaced operate with second operand → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
4495
|
9
1. handleNsValuePending : changed conditional boundary → NO_COVERAGE
2. handleNsValuePending : negated conditional → NO_COVERAGE
3. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
4. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
7. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_inputPtr >= _inputEnd) { |
|
4496
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4497
|
|
} |
|
4498
|
5
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = handleHexEntityInAttribute(true); |
|
4499
|
|
} else { |
|
4500
|
5
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = handleDecEntityInAttribute(true); |
|
4501
|
|
} |
|
4502
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -62 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_AMP_HASH_X) { |
|
4503
|
5
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = handleHexEntityInAttribute(true); |
|
4504
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -63 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_ENTITY_NAME) { |
|
4505
|
|
PName entityName = parseEntityName(); |
|
4506
|
1
1. handleNsValuePending : negated conditional → NO_COVERAGE
|
if (entityName == null) { |
|
4507
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4508
|
|
} |
|
4509
|
|
ch = decodeGeneralEntity(entityName); |
|
4510
|
6
1. handleNsValuePending : negated conditional → NO_COVERAGE
2. handleNsValuePending : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleNsValuePending : changed conditional boundary to IFGE → NO_COVERAGE
4. handleNsValuePending : changed conditional boundary to IFGT → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IFLE → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IFLT → NO_COVERAGE
|
if (ch == 0) { // can't have general entities within attribute values |
|
4511
|
1
1. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
_tokenName = entityName; |
|
4512
|
7
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE
7. handleNsValuePending : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
reportUnexpandedEntityInAttr(_elemAttrName, false); |
|
4513
|
|
} |
|
4514
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -64 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_DEC_DIGIT) { |
|
4515
|
5
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = handleDecEntityInAttribute(false); |
|
4516
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted -65 with 1 → NO_COVERAGE
5. handleNsValuePending : negated conditional → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
} else if (_pendingInput == PENDING_STATE_ATTR_VALUE_HEX_DIGIT) { |
|
4517
|
5
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = handleHexEntityInAttribute(false); |
|
4518
|
|
} else { |
|
4519
|
|
// 05-Aug-2012, tatu: Apparently we can end up here too... |
|
4520
|
|
ch = handleAttrValuePendingUTF8(); |
|
4521
|
|
} |
|
4522
|
6
1. handleNsValuePending : negated conditional → NO_COVERAGE
2. handleNsValuePending : changed conditional boundary to IFEQ → NO_COVERAGE
3. handleNsValuePending : changed conditional boundary to IFGE → NO_COVERAGE
4. handleNsValuePending : changed conditional boundary to IFGT → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IFLE → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IFLT → NO_COVERAGE
|
if (ch == 0) { // wasn't resolved |
|
4523
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4524
|
|
} |
|
4525
|
|
|
|
4526
|
1
1. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
char[] attrBuffer = _nameBuffer; |
|
4527
|
|
// Ok; does it need a surrogate though? (over 16 bits) |
|
4528
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE
5. handleNsValuePending : Replaced Shift Right with Shift Left → NO_COVERAGE
6. handleNsValuePending : negated conditional → NO_COVERAGE
7. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IFGE → NO_COVERAGE
9. handleNsValuePending : changed conditional boundary to IFGT → NO_COVERAGE
10. handleNsValuePending : changed conditional boundary to IFLE → NO_COVERAGE
11. handleNsValuePending : changed conditional boundary to IFLT → NO_COVERAGE
12. handleNsValuePending : changed conditional boundary to IFNE → NO_COVERAGE
|
if ((ch >> 16) != 0) { |
|
4529
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE
5. handleNsValuePending : Replaced operate with second operand → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch -= 0x10000; |
|
4530
|
8
1. handleNsValuePending : changed conditional boundary → NO_COVERAGE
2. handleNsValuePending : negated conditional → NO_COVERAGE
3. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
4. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_elemNsPtr >= attrBuffer.length) { |
|
4531
|
1
1. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
_nameBuffer = attrBuffer = DataUtil.growArrayBy(attrBuffer, attrBuffer.length); |
|
4532
|
|
} |
|
4533
|
20
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
11. handleNsValuePending : Replaced operate with second operand → NO_COVERAGE
12. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
13. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE
14. handleNsValuePending : Replaced Shift Right with Shift Left → NO_COVERAGE
15. handleNsValuePending : Replaced bitwise OR with AND → NO_COVERAGE
16. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
17. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
18. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
20. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemNsPtr++] = (char) (0xD800 | (ch >> 10)); |
|
4534
|
12
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE
8. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE
9. handleNsValuePending : Replaced bitwise AND with OR → NO_COVERAGE
10. handleNsValuePending : Replaced bitwise OR with AND → NO_COVERAGE
11. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
ch = 0xDC00 | (ch & 0x3FF); |
|
4535
|
|
} |
|
4536
|
8
1. handleNsValuePending : changed conditional boundary → NO_COVERAGE
2. handleNsValuePending : negated conditional → NO_COVERAGE
3. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
4. handleNsValuePending : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
5. handleNsValuePending : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
6. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
7. handleNsValuePending : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
8. handleNsValuePending : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (_elemNsPtr >= attrBuffer.length) { |
|
4537
|
1
1. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
_nameBuffer = attrBuffer = DataUtil.growArrayBy(attrBuffer, attrBuffer.length); |
|
4538
|
|
} |
|
4539
|
8
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Replaced operate with second operand → NO_COVERAGE
6. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
8. handleNsValuePending : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
attrBuffer[_elemNsPtr++] = (char) ch; |
|
4540
|
6
1. handleNsValuePending : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handleNsValuePending : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handleNsValuePending : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handleNsValuePending : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handleNsValuePending : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handleNsValuePending : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return true; // done it! |
|
4541
|
|
} |
|
4542
|
|
|
|
4543
|
|
/* |
|
4544
|
|
/********************************************************************** |
|
4545
|
|
/* Common name/entity parsing |
|
4546
|
|
/********************************************************************** |
|
4547
|
|
*/ |
|
4548
|
|
|
|
4549
|
|
protected PName parseNewName(byte b) throws XMLStreamException |
|
4550
|
|
{ |
|
4551
|
6
1. parseNewName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseNewName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseNewName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseNewName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. parseNewName : Replaced bitwise AND with OR → KILLED
6. parseNewName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int q = b & 0xFF; |
|
4552
|
|
|
|
4553
|
|
/* Let's do just quick sanity check first; a thorough check will be |
|
4554
|
|
* done later on if necessary, now we'll just do the very cheap |
|
4555
|
|
* check to catch extra spaces etc. |
|
4556
|
|
*/ |
|
4557
|
12
1. parseNewName : changed conditional boundary → SURVIVED
2. parseNewName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseNewName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseNewName : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parseNewName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseNewName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseNewName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parseNewName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
9. parseNewName : negated conditional → KILLED
10. parseNewName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parseNewName : changed conditional boundary to IF_ICMPEQ → KILLED
12. parseNewName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (q < INT_A) { // lowest acceptable start char, except for ':' that would be allowed in non-ns mode |
|
4558
|
1
1. parseNewName : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(q, "; expected a name start character"); |
|
4559
|
|
} |
|
4560
|
6
1. parseNewName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
2. parseNewName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseNewName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseNewName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseNewName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parseNewName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadCount = 0; |
|
4561
|
1
1. parseNewName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
4562
|
6
1. parseNewName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parseNewName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseNewName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseNewName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseNewName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. parseNewName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 1; |
|
4563
|
1
1. parseNewName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseNewName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return parsePName(); |
|
4564
|
|
} |
|
4565
|
|
|
|
4566
|
|
/** |
|
4567
|
|
* This method can (for now?) be shared between all Ascii-based |
|
4568
|
|
* encodings, since it only does coarse validity checking -- real |
|
4569
|
|
* checks are done in different method. |
|
4570
|
|
*<p> |
|
4571
|
|
* Some notes about assumption implementation makes: |
|
4572
|
|
*<ul> |
|
4573
|
|
* <li>Well-formed xml content can not end with a name: as such, |
|
4574
|
|
* end-of-input is an error and we can throw an exception |
|
4575
|
|
* </li> |
|
4576
|
|
* </ul> |
|
4577
|
|
*/ |
|
4578
|
|
protected PName parsePName() throws XMLStreamException |
|
4579
|
|
{ |
|
4580
|
1
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
int q = _currQuad; |
|
4581
|
|
|
|
4582
|
|
while (true) { |
|
4583
|
|
int i; |
|
4584
|
|
|
|
4585
|
1
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
switch (_currQuadBytes) { |
|
4586
|
|
case 0: |
|
4587
|
9
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePName : changed conditional boundary → KILLED
5. parsePName : negated conditional → KILLED
6. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4588
|
1
1. parsePName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; // all pointers have been set |
|
4589
|
|
} |
|
4590
|
15
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parsePName : Replaced operate with second operand → KILLED
12. parsePName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parsePName : Replaced bitwise AND with OR → KILLED
14. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4591
|
|
/* Since name char validity is checked later on, we only |
|
4592
|
|
* need to be able to reliably see the end of the name... |
|
4593
|
|
* and those are simple enough so that we can just |
|
4594
|
|
* compare; lookup table won't speed things up (according |
|
4595
|
|
* to profiler) |
|
4596
|
|
*/ |
|
4597
|
12
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parsePName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
8. parsePName : negated conditional → KILLED
9. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
11. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
12. parsePName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (q < 65) { // 'A' |
|
4598
|
|
// Ok; "_" (45), "." (46) and "0"-"9"/":" (48 - 57/58) still name chars |
|
4599
|
34
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGE → SURVIVED
4. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
5. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
6. parsePName : changed conditional boundary to IF_ICMPLT → SURVIVED
7. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
8. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
9. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
12. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
15. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
18. parsePName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
19. parsePName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
20. parsePName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
21. parsePName : negated conditional → KILLED
22. parsePName : negated conditional → KILLED
23. parsePName : negated conditional → KILLED
24. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
25. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
26. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
27. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
28. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
29. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
30. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
31. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
32. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
33. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
34. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (q < 45 || q > 58 || q == 47) { |
|
4600
|
|
// End of name |
|
4601
|
6
1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parsePName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return findPName(q, 0); |
|
4602
|
|
} |
|
4603
|
|
} |
|
4604
|
|
// fall through |
|
4605
|
|
|
|
4606
|
|
case 1: |
|
4607
|
9
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePName : changed conditional boundary → KILLED
5. parsePName : negated conditional → KILLED
6. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // need to store pointers |
|
4608
|
1
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
4609
|
6
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 1; |
|
4610
|
1
1. parsePName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
4611
|
|
} |
|
4612
|
15
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parsePName : Replaced operate with second operand → KILLED
12. parsePName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parsePName : Replaced bitwise AND with OR → KILLED
14. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
i = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4613
|
12
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parsePName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
8. parsePName : negated conditional → KILLED
9. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
11. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
12. parsePName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i < 65) { // 'A' |
|
4614
|
34
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary to IF_ICMPGE → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
5. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
6. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
8. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. parsePName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
16. parsePName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
17. parsePName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
18. parsePName : changed conditional boundary → KILLED
19. parsePName : negated conditional → KILLED
20. parsePName : negated conditional → KILLED
21. parsePName : negated conditional → KILLED
22. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
23. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
24. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
25. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
26. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
27. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
28. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
29. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
30. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
31. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
32. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
33. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
34. parsePName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i < 45 || i > 58 || i == 47) { |
|
4615
|
6
1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parsePName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return findPName(q, 1); |
|
4616
|
|
} |
|
4617
|
|
} |
|
4618
|
7
1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parsePName : Replaced Shift Left with Shift Right → KILLED
6. parsePName : Replaced bitwise OR with AND → KILLED
7. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | i; |
|
4619
|
|
// fall through |
|
4620
|
|
|
|
4621
|
|
case 2: |
|
4622
|
9
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePName : changed conditional boundary → KILLED
5. parsePName : negated conditional → KILLED
6. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // need to store pointers |
|
4623
|
1
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
4624
|
6
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePName : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 2; |
|
4625
|
1
1. parsePName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
4626
|
|
} |
|
4627
|
15
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parsePName : Replaced operate with second operand → KILLED
12. parsePName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parsePName : Replaced bitwise AND with OR → KILLED
14. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
i = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4628
|
12
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parsePName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
8. parsePName : negated conditional → KILLED
9. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
11. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
12. parsePName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i < 65) { // 'A' |
|
4629
|
34
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary → SURVIVED
3. parsePName : negated conditional → SURVIVED
4. parsePName : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. parsePName : changed conditional boundary to IF_ICMPGE → SURVIVED
6. parsePName : changed conditional boundary to IF_ICMPGE → SURVIVED
7. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
8. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
9. parsePName : changed conditional boundary to IF_ICMPLT → SURVIVED
10. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
11. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
12. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
14. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
15. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
16. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
17. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
18. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
19. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
20. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
21. parsePName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
22. parsePName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
23. parsePName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
24. parsePName : negated conditional → KILLED
25. parsePName : negated conditional → KILLED
26. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
27. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
28. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
29. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
30. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
31. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
32. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
33. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
34. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (i < 45 || i > 58 || i == 47) { |
|
4630
|
6
1. parsePName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → TIMED_OUT
2. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePName : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
return findPName(q, 2); |
|
4631
|
|
} |
|
4632
|
|
} |
|
4633
|
7
1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parsePName : Replaced Shift Left with Shift Right → KILLED
6. parsePName : Replaced bitwise OR with AND → KILLED
7. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | i; |
|
4634
|
|
// fall through |
|
4635
|
|
|
|
4636
|
|
case 3: |
|
4637
|
9
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parsePName : changed conditional boundary → KILLED
5. parsePName : negated conditional → KILLED
6. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
8. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
9. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // need to store pointers |
|
4638
|
1
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
4639
|
6
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePName : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 3; |
|
4640
|
1
1. parsePName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
4641
|
|
} |
|
4642
|
15
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parsePName : Replaced operate with second operand → KILLED
12. parsePName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parsePName : Replaced bitwise AND with OR → KILLED
14. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
i = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4643
|
12
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parsePName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
8. parsePName : negated conditional → KILLED
9. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
11. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
12. parsePName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i < 65) { // 'A' |
|
4644
|
34
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : changed conditional boundary → SURVIVED
3. parsePName : negated conditional → SURVIVED
4. parsePName : changed conditional boundary to IF_ICMPEQ → SURVIVED
5. parsePName : changed conditional boundary to IF_ICMPGE → SURVIVED
6. parsePName : changed conditional boundary to IF_ICMPGE → SURVIVED
7. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
8. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
9. parsePName : changed conditional boundary to IF_ICMPLT → SURVIVED
10. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
11. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
12. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
13. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
14. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
15. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
16. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
17. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
18. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
19. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
20. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
21. parsePName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
22. parsePName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
23. parsePName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
24. parsePName : negated conditional → KILLED
25. parsePName : negated conditional → KILLED
26. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
27. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
28. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
29. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
30. parsePName : changed conditional boundary to IF_ICMPEQ → KILLED
31. parsePName : changed conditional boundary to IF_ICMPGE → KILLED
32. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
33. parsePName : changed conditional boundary to IF_ICMPGT → KILLED
34. parsePName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (i < 45 || i > 58 || i == 47) { |
|
4645
|
6
1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
5. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parsePName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return findPName(q, 3); |
|
4646
|
|
} |
|
4647
|
|
} |
|
4648
|
7
1. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parsePName : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parsePName : Replaced Shift Left with Shift Right → KILLED
6. parsePName : Replaced bitwise OR with AND → KILLED
7. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | i; |
|
4649
|
|
} |
|
4650
|
|
|
|
4651
|
|
/* If we get this far, need to add full quad into |
|
4652
|
|
* result array and update state |
|
4653
|
|
*/ |
|
4654
|
7
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
2. parsePName : changed conditional boundary to IFGE → SURVIVED
3. parsePName : changed conditional boundary to IFGT → SURVIVED
4. parsePName : negated conditional → KILLED
5. parsePName : changed conditional boundary to IFEQ → KILLED
6. parsePName : changed conditional boundary to IFLE → KILLED
7. parsePName : changed conditional boundary to IFLT → KILLED
|
if (_quadCount == 0) { // first quad |
|
4655
|
6
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
2. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadBuffer[0] = q; |
|
4656
|
6
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
2. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadCount = 1; |
|
4657
|
|
} else { |
|
4658
|
9
1. parsePName : changed conditional boundary → SURVIVED
2. parsePName : negated conditional → SURVIVED
3. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
4. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
5. parsePName : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. parsePName : changed conditional boundary to IF_ICMPGE → SURVIVED
7. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
8. parsePName : changed conditional boundary to IF_ICMPGT → SURVIVED
9. parsePName : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_quadCount >= _quadBuffer.length) { // let's just double? |
|
4659
|
3
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE
3. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE
|
_quadBuffer = DataUtil.growArrayBy(_quadBuffer, _quadBuffer.length); |
|
4660
|
|
} |
|
4661
|
9
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
2. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
3. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
4. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parsePName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. parsePName : Replaced operate with second operand → KILLED
9. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadBuffer[_quadCount++] = q; |
|
4662
|
|
} |
|
4663
|
6
1. parsePName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parsePName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parsePName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parsePName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parsePName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parsePName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 0; |
|
4664
|
|
} |
|
4665
|
|
} |
|
4666
|
|
|
|
4667
|
|
protected final PName parseNewEntityName(byte b) throws XMLStreamException |
|
4668
|
|
{ |
|
4669
|
6
1. parseNewEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseNewEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseNewEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseNewEntityName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
5. parseNewEntityName : Replaced bitwise AND with OR → KILLED
6. parseNewEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int q = b & 0xFF; |
|
4670
|
12
1. parseNewEntityName : changed conditional boundary → SURVIVED
2. parseNewEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseNewEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseNewEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parseNewEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseNewEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseNewEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parseNewEntityName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
9. parseNewEntityName : negated conditional → KILLED
10. parseNewEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parseNewEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
12. parseNewEntityName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (q < INT_A) { |
|
4671
|
1
1. parseNewEntityName : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
throwUnexpectedChar(q, "; expected a name start character"); |
|
4672
|
|
} |
|
4673
|
6
1. parseNewEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
2. parseNewEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseNewEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseNewEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseNewEntityName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parseNewEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadCount = 0; |
|
4674
|
1
1. parseNewEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
4675
|
6
1. parseNewEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parseNewEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseNewEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseNewEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseNewEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. parseNewEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 1; |
|
4676
|
1
1. parseNewEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseNewEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return parseEntityName(); |
|
4677
|
|
} |
|
4678
|
|
|
|
4679
|
|
protected final PName parseEntityName() throws XMLStreamException |
|
4680
|
|
{ |
|
4681
|
1
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
int q = _currQuad; |
|
4682
|
|
|
|
4683
|
|
while (true) { |
|
4684
|
|
int i; |
|
4685
|
|
|
|
4686
|
1
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
switch (_currQuadBytes) { |
|
4687
|
|
case 0: |
|
4688
|
9
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseEntityName : changed conditional boundary → KILLED
5. parseEntityName : negated conditional → KILLED
6. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseEntityName : changed conditional boundary to IF_ICMPGE → KILLED
8. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
9. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4689
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; // all pointers have been set |
|
4690
|
|
} |
|
4691
|
15
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parseEntityName : Replaced operate with second operand → KILLED
12. parseEntityName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parseEntityName : Replaced bitwise AND with OR → KILLED
14. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4692
|
|
/* Since name char validity is checked later on, we only |
|
4693
|
|
* need to be able to reliably see the end of the name... |
|
4694
|
|
* and those are simple enough so that we can just |
|
4695
|
|
* compare; lookup table won't speed things up (according |
|
4696
|
|
* to profiler) |
|
4697
|
|
*/ |
|
4698
|
12
1. parseEntityName : changed conditional boundary → SURVIVED
2. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parseEntityName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
8. parseEntityName : negated conditional → KILLED
9. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
11. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
12. parseEntityName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (q < 65) { // 'A' |
|
4699
|
|
// Ok; "_" (45), "." (46) and "0"-"9"/":" (48 - 57/58) still name chars |
|
4700
|
34
1. parseEntityName : changed conditional boundary → SURVIVED
2. parseEntityName : changed conditional boundary → SURVIVED
3. parseEntityName : negated conditional → SURVIVED
4. parseEntityName : negated conditional → SURVIVED
5. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
7. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
8. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
9. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
10. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
11. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
12. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
13. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
14. parseEntityName : changed conditional boundary to IF_ICMPLT → SURVIVED
15. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
16. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
17. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
18. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
19. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
20. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
21. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
22. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
23. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
24. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
25. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
26. parseEntityName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
27. parseEntityName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
28. parseEntityName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
29. parseEntityName : negated conditional → KILLED
30. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
31. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
32. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
33. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
34. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (q < 45 || q > 58 || q == 47) { |
|
4701
|
|
// apos, quot? |
|
4702
|
12
1. parseEntityName : negated conditional → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
5. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
6. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
7. parseEntityName : changed conditional boundary to IF_ICMPLT → SURVIVED
8. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
12. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (_quadCount == 1) { |
|
4703
|
6
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
2. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = _quadBuffer[0]; |
|
4704
|
6
1. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
2. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseEntityName : negated conditional → KILLED
5. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
6. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (q == EntityNames.ENTITY_APOS_QUAD) { |
|
4705
|
8
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parseEntityName : Replaced operate with second operand → NO_COVERAGE
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
--_inputPtr; |
|
4706
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return EntityNames.ENTITY_APOS; |
|
4707
|
|
} |
|
4708
|
6
1. parseEntityName : changed conditional boundary to IF_ICMPLT → SURVIVED
2. parseEntityName : negated conditional → KILLED
3. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
4. parseEntityName : changed conditional boundary to IF_ICMPGE → KILLED
5. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
6. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (q == EntityNames.ENTITY_QUOT_QUAD) { |
|
4709
|
8
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parseEntityName : Replaced operate with second operand → NO_COVERAGE
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
--_inputPtr; |
|
4710
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return EntityNames.ENTITY_QUOT; |
|
4711
|
|
} |
|
4712
|
|
} |
|
4713
|
|
// Nope, generic: |
|
4714
|
6
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
5. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return findPName(q, 0); |
|
4715
|
|
} |
|
4716
|
|
} |
|
4717
|
|
// fall through |
|
4718
|
|
|
|
4719
|
|
case 1: |
|
4720
|
9
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseEntityName : changed conditional boundary → KILLED
5. parseEntityName : negated conditional → KILLED
6. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseEntityName : changed conditional boundary to IF_ICMPGE → KILLED
8. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
9. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // need to store pointers |
|
4721
|
1
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
4722
|
6
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 1; |
|
4723
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
4724
|
|
} |
|
4725
|
15
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parseEntityName : Replaced operate with second operand → KILLED
12. parseEntityName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parseEntityName : Replaced bitwise AND with OR → KILLED
14. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
i = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4726
|
12
1. parseEntityName : changed conditional boundary → SURVIVED
2. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
5. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. parseEntityName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
9. parseEntityName : negated conditional → KILLED
10. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
11. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
12. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (i < 65) { // 'A' |
|
4727
|
34
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. parseEntityName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → NO_COVERAGE
11. parseEntityName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → NO_COVERAGE
12. parseEntityName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → NO_COVERAGE
13. parseEntityName : changed conditional boundary → NO_COVERAGE
14. parseEntityName : changed conditional boundary → NO_COVERAGE
15. parseEntityName : negated conditional → NO_COVERAGE
16. parseEntityName : negated conditional → NO_COVERAGE
17. parseEntityName : negated conditional → NO_COVERAGE
18. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
19. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
20. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
21. parseEntityName : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
22. parseEntityName : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
23. parseEntityName : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
24. parseEntityName : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
25. parseEntityName : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
26. parseEntityName : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
27. parseEntityName : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
28. parseEntityName : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
29. parseEntityName : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
30. parseEntityName : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
31. parseEntityName : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
32. parseEntityName : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
33. parseEntityName : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
34. parseEntityName : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (i < 45 || i > 58 || i == 47) { |
|
4728
|
6
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return findPName(q, 1); |
|
4729
|
|
} |
|
4730
|
|
} |
|
4731
|
7
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parseEntityName : Replaced Shift Left with Shift Right → KILLED
6. parseEntityName : Replaced bitwise OR with AND → KILLED
7. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | i; |
|
4732
|
|
// fall through |
|
4733
|
|
|
|
4734
|
|
case 2: |
|
4735
|
9
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseEntityName : changed conditional boundary → KILLED
5. parseEntityName : negated conditional → KILLED
6. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseEntityName : changed conditional boundary to IF_ICMPGE → KILLED
8. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
9. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // need to store pointers |
|
4736
|
1
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
4737
|
6
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 2; |
|
4738
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
4739
|
|
} |
|
4740
|
15
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parseEntityName : Replaced operate with second operand → KILLED
12. parseEntityName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parseEntityName : Replaced bitwise AND with OR → KILLED
14. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
i = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4741
|
12
1. parseEntityName : changed conditional boundary → SURVIVED
2. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parseEntityName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
8. parseEntityName : negated conditional → KILLED
9. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
11. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
12. parseEntityName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i < 65) { // 'A' |
|
4742
|
34
1. parseEntityName : changed conditional boundary → SURVIVED
2. parseEntityName : changed conditional boundary → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
5. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
6. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
7. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
8. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
10. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
11. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
12. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
13. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
14. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
17. parseEntityName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
18. parseEntityName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
19. parseEntityName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
20. parseEntityName : negated conditional → KILLED
21. parseEntityName : negated conditional → KILLED
22. parseEntityName : negated conditional → KILLED
23. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
24. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
25. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
26. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
27. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
28. parseEntityName : changed conditional boundary to IF_ICMPGE → KILLED
29. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
30. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
31. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
32. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
33. parseEntityName : changed conditional boundary to IF_ICMPNE → KILLED
34. parseEntityName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i < 45 || i > 58 || i == 47) { |
|
4743
|
|
// lt or gt? |
|
4744
|
7
1. parseEntityName : negated conditional → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
3. parseEntityName : changed conditional boundary to IFEQ → SURVIVED
4. parseEntityName : changed conditional boundary to IFGE → SURVIVED
5. parseEntityName : changed conditional boundary to IFGT → SURVIVED
6. parseEntityName : changed conditional boundary to IFLE → SURVIVED
7. parseEntityName : changed conditional boundary to IFLT → SURVIVED
|
if (_quadCount == 0) { |
|
4745
|
6
1. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
2. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseEntityName : negated conditional → KILLED
5. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
6. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (q == EntityNames.ENTITY_GT_QUAD) { |
|
4746
|
8
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. parseEntityName : Replaced operate with second operand → NO_COVERAGE
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
--_inputPtr; |
|
4747
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
return EntityNames.ENTITY_GT; |
|
4748
|
|
} |
|
4749
|
6
1. parseEntityName : negated conditional → SURVIVED
2. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
4. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
5. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
6. parseEntityName : changed conditional boundary to IF_ICMPLT → SURVIVED
|
if (q == EntityNames.ENTITY_LT_QUAD) { |
|
4750
|
8
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parseEntityName : Replaced operate with second operand → KILLED
8. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
--_inputPtr; |
|
4751
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return EntityNames.ENTITY_LT; |
|
4752
|
|
} |
|
4753
|
|
} |
|
4754
|
6
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED
5. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return findPName(q, 2); |
|
4755
|
|
} |
|
4756
|
|
} |
|
4757
|
7
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parseEntityName : Replaced Shift Left with Shift Right → KILLED
6. parseEntityName : Replaced bitwise OR with AND → KILLED
7. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | i; |
|
4758
|
|
// fall through |
|
4759
|
|
|
|
4760
|
|
case 3: |
|
4761
|
9
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
4. parseEntityName : changed conditional boundary → KILLED
5. parseEntityName : negated conditional → KILLED
6. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
7. parseEntityName : changed conditional boundary to IF_ICMPGE → KILLED
8. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
9. parseEntityName : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { // need to store pointers |
|
4762
|
1
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
_currQuad = q; |
|
4763
|
6
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 3; |
|
4764
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return null; |
|
4765
|
|
} |
|
4766
|
15
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
11. parseEntityName : Replaced operate with second operand → KILLED
12. parseEntityName : Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED
13. parseEntityName : Replaced bitwise AND with OR → KILLED
14. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
15. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
i = _inputBuffer.get(_inputPtr++) & 0xFF; |
|
4767
|
12
1. parseEntityName : changed conditional boundary → SURVIVED
2. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
4. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parseEntityName : Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED
8. parseEntityName : negated conditional → KILLED
9. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
10. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
11. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
12. parseEntityName : changed conditional boundary to IF_ICMPNE → KILLED
|
if (i < 65) { // 'A' |
|
4768
|
34
1. parseEntityName : changed conditional boundary → SURVIVED
2. parseEntityName : changed conditional boundary → SURVIVED
3. parseEntityName : negated conditional → SURVIVED
4. parseEntityName : negated conditional → SURVIVED
5. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
7. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
8. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
9. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
10. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
11. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
12. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
13. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
14. parseEntityName : changed conditional boundary to IF_ICMPLT → SURVIVED
15. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
16. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
17. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
18. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
19. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
20. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
21. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
22. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
23. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
24. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
25. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
26. parseEntityName : Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED
27. parseEntityName : Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED
28. parseEntityName : Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED
29. parseEntityName : negated conditional → KILLED
30. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
31. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
32. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
33. parseEntityName : changed conditional boundary to IF_ICMPEQ → KILLED
34. parseEntityName : changed conditional boundary to IF_ICMPLT → KILLED
|
if (i < 45 || i > 58 || i == 47) { |
|
4769
|
|
// amp? |
|
4770
|
7
1. parseEntityName : negated conditional → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
3. parseEntityName : changed conditional boundary to IFEQ → SURVIVED
4. parseEntityName : changed conditional boundary to IFGE → SURVIVED
5. parseEntityName : changed conditional boundary to IFGT → SURVIVED
6. parseEntityName : changed conditional boundary to IFLE → SURVIVED
7. parseEntityName : changed conditional boundary to IFLT → SURVIVED
|
if (_quadCount == 0) { |
|
4771
|
6
1. parseEntityName : negated conditional → SURVIVED
2. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
3. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
4. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
5. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
6. parseEntityName : changed conditional boundary to IF_ICMPLT → SURVIVED
|
if (q == EntityNames.ENTITY_AMP_QUAD) { |
|
4772
|
8
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. parseEntityName : Replaced operate with second operand → KILLED
8. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
--_inputPtr; |
|
4773
|
1
1. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return EntityNames.ENTITY_AMP; |
|
4774
|
|
} |
|
4775
|
|
} |
|
4776
|
6
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED
5. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. parseEntityName : mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
return findPName(q, 3); |
|
4777
|
|
} |
|
4778
|
|
} |
|
4779
|
7
1. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED
5. parseEntityName : Replaced Shift Left with Shift Right → KILLED
6. parseEntityName : Replaced bitwise OR with AND → KILLED
7. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
q = (q << 8) | i; |
|
4780
|
|
} |
|
4781
|
|
|
|
4782
|
|
/* If we get this far, need to add full quad into |
|
4783
|
|
* result array and update state |
|
4784
|
|
*/ |
|
4785
|
7
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
2. parseEntityName : changed conditional boundary to IFGE → SURVIVED
3. parseEntityName : changed conditional boundary to IFGT → SURVIVED
4. parseEntityName : negated conditional → KILLED
5. parseEntityName : changed conditional boundary to IFEQ → KILLED
6. parseEntityName : changed conditional boundary to IFLE → KILLED
7. parseEntityName : changed conditional boundary to IFLT → KILLED
|
if (_quadCount == 0) { // first quad |
|
4786
|
6
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
2. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadBuffer[0] = q; |
|
4787
|
6
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
2. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadCount = 1; |
|
4788
|
|
} else { |
|
4789
|
9
1. parseEntityName : changed conditional boundary → SURVIVED
2. parseEntityName : negated conditional → SURVIVED
3. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
4. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
5. parseEntityName : changed conditional boundary to IF_ICMPEQ → SURVIVED
6. parseEntityName : changed conditional boundary to IF_ICMPGE → SURVIVED
7. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
8. parseEntityName : changed conditional boundary to IF_ICMPGT → SURVIVED
9. parseEntityName : changed conditional boundary to IF_ICMPNE → SURVIVED
|
if (_quadCount >= _quadBuffer.length) { // let's just double? |
|
4790
|
3
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE
3. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE
|
_quadBuffer = DataUtil.growArrayBy(_quadBuffer, _quadBuffer.length); |
|
4791
|
|
} |
|
4792
|
9
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
2. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
3. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
4. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. parseEntityName : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. parseEntityName : Replaced operate with second operand → KILLED
9. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_quadBuffer[_quadCount++] = q; |
|
4793
|
|
} |
|
4794
|
6
1. parseEntityName : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
2. parseEntityName : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. parseEntityName : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. parseEntityName : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. parseEntityName : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. parseEntityName : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_currQuadBytes = 0; |
|
4795
|
|
} |
|
4796
|
|
} |
|
4797
|
|
|
|
4798
|
|
/* |
|
4799
|
|
/********************************************************************** |
|
4800
|
|
/* Internal methods, LF handling |
|
4801
|
|
/********************************************************************** |
|
4802
|
|
*/ |
|
4803
|
|
|
|
4804
|
|
/** |
|
4805
|
|
* Method called when there is a pending \r (from past buffer), |
|
4806
|
|
* and we need to see |
|
4807
|
|
* |
|
4808
|
|
* @return True if the linefeed was succesfully processed (had |
|
4809
|
|
* enough input data to do that); or false if there is no |
|
4810
|
|
* data available to check this |
|
4811
|
|
*/ |
|
4812
|
|
protected final boolean handlePartialCR() |
|
4813
|
|
{ |
|
4814
|
|
// sanity check |
|
4815
|
12
1. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handlePartialCR : changed conditional boundary to IF_ICMPGE → SURVIVED
3. handlePartialCR : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePartialCR : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handlePartialCR : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handlePartialCR : Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED
7. handlePartialCR : negated conditional → KILLED
8. handlePartialCR : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. handlePartialCR : changed conditional boundary to IF_ICMPGT → KILLED
10. handlePartialCR : changed conditional boundary to IF_ICMPGT → KILLED
11. handlePartialCR : changed conditional boundary to IF_ICMPLT → KILLED
12. handlePartialCR : changed conditional boundary to IF_ICMPNE → KILLED
|
if (_pendingInput != PENDING_STATE_CR) { |
|
4816
|
|
throwInternal(); |
|
4817
|
|
} |
|
4818
|
9
1. handlePartialCR : changed conditional boundary → SURVIVED
2. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
4. handlePartialCR : changed conditional boundary to IF_ICMPNE → SURVIVED
5. handlePartialCR : negated conditional → KILLED
6. handlePartialCR : changed conditional boundary to IF_ICMPEQ → KILLED
7. handlePartialCR : changed conditional boundary to IF_ICMPGE → KILLED
8. handlePartialCR : changed conditional boundary to IF_ICMPGT → KILLED
9. handlePartialCR : changed conditional boundary to IF_ICMPGT → KILLED
|
if (_inputPtr >= _inputEnd) { |
|
4819
|
6
1. handlePartialCR : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePartialCR : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePartialCR : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePartialCR : Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE
5. handlePartialCR : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
6. handlePartialCR : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
return false; |
|
4820
|
|
} |
|
4821
|
6
1. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
2. handlePartialCR : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. handlePartialCR : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. handlePartialCR : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
5. handlePartialCR : Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED
6. handlePartialCR : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
_pendingInput = 0; |
|
4822
|
13
1. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. handlePartialCR : changed conditional boundary to IF_ICMPGE → SURVIVED
4. handlePartialCR : changed conditional boundary to IF_ICMPGT → SURVIVED
5. handlePartialCR : changed conditional boundary to IF_ICMPGT → SURVIVED
6. handlePartialCR : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
7. handlePartialCR : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. handlePartialCR : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. handlePartialCR : Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED
10. handlePartialCR : negated conditional → KILLED
11. handlePartialCR : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
12. handlePartialCR : changed conditional boundary to IF_ICMPEQ → KILLED
13. handlePartialCR : changed conditional boundary to IF_ICMPLT → KILLED
|
if (_inputBuffer.get(_inputPtr) == BYTE_LF) { |
|
4823
|
8
1. handlePartialCR : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. handlePartialCR : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. handlePartialCR : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. handlePartialCR : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
5. handlePartialCR : Replaced operate with second operand → NO_COVERAGE
6. handlePartialCR : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
++_inputPtr; |
|
4824
|
|
} |
|
4825
|
8
1. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currRow mutated with null check on object → SURVIVED
2. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currRow mutated with null check on object → SURVIVED
3. handlePartialCR : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. handlePartialCR : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. handlePartialCR : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. handlePartialCR : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
7. handlePartialCR : Replaced operate with second operand → KILLED
8. handlePartialCR : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
++_currRow; |
|
4826
|
2
1. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
2. handlePartialCR : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_rowStartOffset mutated with null check on object → SURVIVED
|
_rowStartOffset = _inputPtr; |
|
4827
|
6
1. handlePartialCR : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. handlePartialCR : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. handlePartialCR : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. handlePartialCR : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
5. handlePartialCR : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
6. handlePartialCR : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return true; |
|
4828
|
|
} |
|
4829
|
|
|
|
4830
|
|
/* |
|
4831
|
|
/********************************************************************** |
|
4832
|
|
/* Multi-byte char decoding |
|
4833
|
|
/********************************************************************** |
|
4834
|
|
*/ |
|
4835
|
|
|
|
4836
|
|
/** |
|
4837
|
|
*<p> |
|
4838
|
|
* Note: caller must guarantee enough data is available before |
|
4839
|
|
* calling the method |
|
4840
|
|
*/ |
|
4841
|
|
protected final int decodeUtf8_2(int c) throws XMLStreamException |
|
4842
|
|
{ |
|
4843
|
9
1. decodeUtf8_2 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeUtf8_2 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeUtf8_2 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_2 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeUtf8_2 : Replaced operate with second operand → KILLED
9. decodeUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++); |
|
4844
|
17
1. decodeUtf8_2 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_2 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_2 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_2 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_2 : negated conditional → KILLED
12. decodeUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_2 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_2 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_2 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_2 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((d & 0xC0) != 0x080) { |
|
4845
|
8
1. decodeUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_2 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. decodeUtf8_2 : Replaced bitwise AND with OR → NO_COVERAGE
6. decodeUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeUtf8_2 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. decodeUtf8_2 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(d & 0xFF, _inputPtr); |
|
4846
|
|
} |
|
4847
|
20
1. decodeUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. decodeUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. decodeUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. decodeUtf8_2 : Bug fixed: CRCR replace with One, Substituted 31 with 1 → KILLED
11. decodeUtf8_2 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
12. decodeUtf8_2 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
13. decodeUtf8_2 : Replaced bitwise AND with OR → KILLED
14. decodeUtf8_2 : Replaced Shift Left with Shift Right → KILLED
15. decodeUtf8_2 : Replaced bitwise AND with OR → KILLED
16. decodeUtf8_2 : Replaced bitwise OR with AND → KILLED
17. decodeUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. decodeUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. decodeUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. decodeUtf8_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return ((c & 0x1F) << 6) | (d & 0x3F); |
|
4848
|
|
} |
|
4849
|
|
|
|
4850
|
|
protected final void skipUtf8_2(int c) throws XMLStreamException |
|
4851
|
|
{ |
|
4852
|
9
1. skipUtf8_2 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. skipUtf8_2 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. skipUtf8_2 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. skipUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. skipUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipUtf8_2 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. skipUtf8_2 : Replaced operate with second operand → KILLED
9. skipUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++); |
|
4853
|
17
1. skipUtf8_2 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. skipUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. skipUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. skipUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. skipUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. skipUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. skipUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. skipUtf8_2 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. skipUtf8_2 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. skipUtf8_2 : Replaced bitwise AND with OR → KILLED
11. skipUtf8_2 : negated conditional → KILLED
12. skipUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. skipUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. skipUtf8_2 : changed conditional boundary to IF_ICMPGT → KILLED
15. skipUtf8_2 : changed conditional boundary to IF_ICMPGT → KILLED
16. skipUtf8_2 : changed conditional boundary to IF_ICMPLT → KILLED
17. skipUtf8_2 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((d & 0xC0) != 0x080) { |
|
4854
|
8
1. skipUtf8_2 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. skipUtf8_2 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. skipUtf8_2 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. skipUtf8_2 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. skipUtf8_2 : Replaced bitwise AND with OR → NO_COVERAGE
6. skipUtf8_2 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. skipUtf8_2 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. skipUtf8_2 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(d & 0xFF, _inputPtr); |
|
4855
|
|
} |
|
4856
|
|
} |
|
4857
|
|
|
|
4858
|
|
/** |
|
4859
|
|
*<p> |
|
4860
|
|
* Note: caller must guarantee enough data is available before |
|
4861
|
|
* calling the method |
|
4862
|
|
*/ |
|
4863
|
|
protected final int decodeUtf8_3(int c1) |
|
4864
|
|
throws XMLStreamException |
|
4865
|
|
{ |
|
4866
|
6
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
3. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED
5. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
6. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c1 &= 0x0F; |
|
4867
|
9
1. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeUtf8_3 : Replaced operate with second operand → KILLED
9. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++); |
|
4868
|
17
1. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_3 : negated conditional → KILLED
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_3 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((d & 0xC0) != 0x080) { |
|
4869
|
8
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. decodeUtf8_3 : Replaced bitwise AND with OR → NO_COVERAGE
6. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. decodeUtf8_3 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(d & 0xFF, _inputPtr); |
|
4870
|
|
} |
|
4871
|
13
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
8. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
9. decodeUtf8_3 : Replaced Shift Left with Shift Right → KILLED
10. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_3 : Replaced bitwise OR with AND → KILLED
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c = (c1 << 6) | (d & 0x3F); |
|
4872
|
9
1. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeUtf8_3 : Replaced operate with second operand → KILLED
9. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
d = (int) _inputBuffer.get(_inputPtr++); |
|
4873
|
17
1. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_3 : negated conditional → KILLED
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_3 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((d & 0xC0) != 0x080) { |
|
4874
|
8
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. decodeUtf8_3 : Replaced bitwise AND with OR → NO_COVERAGE
6. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. decodeUtf8_3 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(d & 0xFF, _inputPtr); |
|
4875
|
|
} |
|
4876
|
13
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
8. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
9. decodeUtf8_3 : Replaced Shift Left with Shift Right → KILLED
10. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_3 : Replaced bitwise OR with AND → KILLED
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (c << 6) | (d & 0x3F); |
|
4877
|
12
1. decodeUtf8_3 : changed conditional boundary → SURVIVED
2. decodeUtf8_3 : negated conditional → SURVIVED
3. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → SURVIVED
5. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → SURVIVED
6. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → SURVIVED
7. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → SURVIVED
8. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (c1 >= 0xD) { // 0xD800-0xDFFF, 0xFFFE-0xFFFF illegal |
|
4878
|
12
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE
5. decodeUtf8_3 : changed conditional boundary → NO_COVERAGE
6. decodeUtf8_3 : negated conditional → NO_COVERAGE
7. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
8. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
9. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
10. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
11. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
12. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (c >= 0xD800) { // surrogates illegal, as well as 0xFFFE/0xFFFF |
|
4879
|
35
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
11. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
12. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 65535 with 1 → NO_COVERAGE
13. decodeUtf8_3 : changed conditional boundary → NO_COVERAGE
14. decodeUtf8_3 : changed conditional boundary → NO_COVERAGE
15. decodeUtf8_3 : changed conditional boundary → NO_COVERAGE
16. decodeUtf8_3 : negated conditional → NO_COVERAGE
17. decodeUtf8_3 : negated conditional → NO_COVERAGE
18. decodeUtf8_3 : negated conditional → NO_COVERAGE
19. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
20. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
21. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
22. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
23. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
24. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
25. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
26. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
27. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
28. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
29. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
30. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
31. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
32. decodeUtf8_3 : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
33. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
34. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
35. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (c < 0xE000 || (c >= 0xFFFE && c <= 0xFFFF)) { |
|
4880
|
|
c = handleInvalidXmlChar(c); |
|
4881
|
|
} |
|
4882
|
|
} |
|
4883
|
|
} |
|
4884
|
1
1. decodeUtf8_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return c; |
|
4885
|
|
} |
|
4886
|
|
|
|
4887
|
|
protected final int decodeUtf8_3(int c1, int c2, int c3) throws XMLStreamException |
|
4888
|
|
{ |
|
4889
|
|
// Note: first char is assumed to have been checked |
|
4890
|
17
1. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_3 : negated conditional → KILLED
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_3 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((c2 & 0xC0) != 0x080) { |
|
4891
|
14
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
8. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. decodeUtf8_3 : Replaced operate with second operand → NO_COVERAGE
10. decodeUtf8_3 : Replaced bitwise AND with OR → NO_COVERAGE
11. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
14. decodeUtf8_3 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(c2 & 0xFF, _inputPtr-1); |
|
4892
|
|
} |
|
4893
|
17
1. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_3 : negated conditional → KILLED
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_3 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((c3 & 0xC0) != 0x080) { |
|
4894
|
8
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. decodeUtf8_3 : Replaced bitwise AND with OR → NO_COVERAGE
6. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeUtf8_3 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. decodeUtf8_3 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(c3 & 0xFF, _inputPtr); |
|
4895
|
|
} |
|
4896
|
32
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
9. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
11. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
12. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
13. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
14. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
15. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
16. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED
17. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED
18. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
19. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
20. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
21. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
22. decodeUtf8_3 : Replaced Shift Left with Shift Right → KILLED
23. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
24. decodeUtf8_3 : Replaced Shift Left with Shift Right → KILLED
25. decodeUtf8_3 : Replaced bitwise OR with AND → KILLED
26. decodeUtf8_3 : Replaced bitwise AND with OR → KILLED
27. decodeUtf8_3 : Replaced bitwise OR with AND → KILLED
28. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
29. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
30. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
31. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
32. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c = ((c1 & 0x0F) << 12) | ((c2 & 0x3F) << 6) | (c3 & 0x3F); |
|
4897
|
12
1. decodeUtf8_3 : changed conditional boundary → SURVIVED
2. decodeUtf8_3 : negated conditional → SURVIVED
3. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → SURVIVED
4. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → SURVIVED
5. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → SURVIVED
6. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → SURVIVED
7. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → SURVIVED
8. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
9. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
10. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED
12. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
if (c1 >= 0xD) { // 0xD800-0xDFFF, 0xFFFE-0xFFFF illegal |
|
4898
|
12
1. decodeUtf8_3 : changed conditional boundary → SURVIVED
2. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → SURVIVED
3. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED
7. decodeUtf8_3 : negated conditional → KILLED
8. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
9. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → KILLED
10. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → KILLED
11. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
12. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → KILLED
|
if (c >= 0xD800) { // surrogates illegal, as well as 0xFFFE/0xFFFF |
|
4899
|
35
1. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. decodeUtf8_3 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
4. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
6. decodeUtf8_3 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
7. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
8. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
9. decodeUtf8_3 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
10. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE
11. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE
12. decodeUtf8_3 : Bug fixed: CRCR replace with One, Substituted 65535 with 1 → NO_COVERAGE
13. decodeUtf8_3 : changed conditional boundary → NO_COVERAGE
14. decodeUtf8_3 : changed conditional boundary → NO_COVERAGE
15. decodeUtf8_3 : changed conditional boundary → NO_COVERAGE
16. decodeUtf8_3 : negated conditional → NO_COVERAGE
17. decodeUtf8_3 : negated conditional → NO_COVERAGE
18. decodeUtf8_3 : negated conditional → NO_COVERAGE
19. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
20. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
21. decodeUtf8_3 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
22. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
23. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
24. decodeUtf8_3 : changed conditional boundary to IF_ICMPEQ → NO_COVERAGE
25. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
26. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
27. decodeUtf8_3 : changed conditional boundary to IF_ICMPGE → NO_COVERAGE
28. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
29. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
30. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
31. decodeUtf8_3 : changed conditional boundary to IF_ICMPGT → NO_COVERAGE
32. decodeUtf8_3 : changed conditional boundary to IF_ICMPLT → NO_COVERAGE
33. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
34. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
35. decodeUtf8_3 : changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
if (c < 0xE000 || (c >= 0xFFFE && c <= 0xFFFF)) { |
|
4900
|
|
c = handleInvalidXmlChar(c); |
|
4901
|
|
} |
|
4902
|
|
} |
|
4903
|
|
} |
|
4904
|
1
1. decodeUtf8_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return c; |
|
4905
|
|
} |
|
4906
|
|
|
|
4907
|
|
protected final int decodeUtf8_4(int c) |
|
4908
|
|
throws XMLStreamException |
|
4909
|
|
{ |
|
4910
|
9
1. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeUtf8_4 : Replaced operate with second operand → KILLED
9. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int d = (int) _inputBuffer.get(_inputPtr++); |
|
4911
|
17
1. decodeUtf8_4 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_4 : negated conditional → KILLED
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_4 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_4 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((d & 0xC0) != 0x080) { |
|
4912
|
8
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. decodeUtf8_4 : Replaced bitwise AND with OR → NO_COVERAGE
6. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. decodeUtf8_4 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(d & 0xFF, _inputPtr); |
|
4913
|
|
} |
|
4914
|
19
1. decodeUtf8_4 : Replaced Shift Left with Shift Right → SURVIVED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
12. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
14. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
15. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
16. decodeUtf8_4 : Replaced bitwise OR with AND → KILLED
17. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = ((c & 0x07) << 6) | (d & 0x3F); |
|
4915
|
9
1. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeUtf8_4 : Replaced operate with second operand → KILLED
9. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
d = (int) _inputBuffer.get(_inputPtr++); |
|
4916
|
17
1. decodeUtf8_4 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_4 : negated conditional → KILLED
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_4 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_4 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((d & 0xC0) != 0x080) { |
|
4917
|
8
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. decodeUtf8_4 : Replaced bitwise AND with OR → NO_COVERAGE
6. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. decodeUtf8_4 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(d & 0xFF, _inputPtr); |
|
4918
|
|
} |
|
4919
|
13
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
9. decodeUtf8_4 : Replaced Shift Left with Shift Right → KILLED
10. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_4 : Replaced bitwise OR with AND → KILLED
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (c << 6) | (d & 0x3F); |
|
4920
|
9
1. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
2. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
3. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
4. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED
8. decodeUtf8_4 : Replaced operate with second operand → KILLED
9. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
d = (int) _inputBuffer.get(_inputPtr++); |
|
4921
|
17
1. decodeUtf8_4 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_4 : negated conditional → KILLED
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_4 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_4 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((d & 0xC0) != 0x080) { |
|
4922
|
8
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. decodeUtf8_4 : Replaced bitwise AND with OR → NO_COVERAGE
6. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. decodeUtf8_4 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(d & 0xFF, _inputPtr); |
|
4923
|
|
} |
|
4924
|
|
/* note: won't change it to negative here, since caller |
|
4925
|
|
* already knows it'll need a surrogate |
|
4926
|
|
*/ |
|
4927
|
20
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
11. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
12. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → KILLED
13. decodeUtf8_4 : Replaced operate with second operand → KILLED
14. decodeUtf8_4 : Replaced Shift Left with Shift Right → KILLED
15. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
16. decodeUtf8_4 : Replaced bitwise OR with AND → KILLED
17. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. decodeUtf8_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return ((c << 6) | (d & 0x3F)) - 0x10000; |
|
4928
|
|
} |
|
4929
|
|
|
|
4930
|
|
/** |
|
4931
|
|
* @return Character value <b>minus 0x10000</c>; this so that caller |
|
4932
|
|
* can readily expand it to actual surrogates |
|
4933
|
|
*/ |
|
4934
|
|
protected final int decodeUtf8_4(int c1, int c2, int c3, int c4) throws XMLStreamException |
|
4935
|
|
{ |
|
4936
|
|
/* Note: first char is assumed to have been checked, |
|
4937
|
|
* (but not yet masked) |
|
4938
|
|
*/ |
|
4939
|
17
1. decodeUtf8_4 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_4 : negated conditional → KILLED
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_4 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_4 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((c2 & 0xC0) != 0x080) { |
|
4940
|
14
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE
9. decodeUtf8_4 : Replaced operate with second operand → NO_COVERAGE
10. decodeUtf8_4 : Replaced bitwise AND with OR → NO_COVERAGE
11. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
14. decodeUtf8_4 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(c2 & 0xFF, _inputPtr-2); |
|
4941
|
|
} |
|
4942
|
19
1. decodeUtf8_4 : Replaced Shift Left with Shift Right → SURVIVED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
11. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED
12. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
14. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
15. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
16. decodeUtf8_4 : Replaced bitwise OR with AND → KILLED
17. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
int c = ((c1 & 0x07) << 6) | (c2 & 0x3F); |
|
4943
|
17
1. decodeUtf8_4 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_4 : negated conditional → KILLED
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_4 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_4 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((c3 & 0xC0) != 0x080) { |
|
4944
|
14
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
3. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
5. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
7. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE
9. decodeUtf8_4 : Replaced operate with second operand → NO_COVERAGE
10. decodeUtf8_4 : Replaced bitwise AND with OR → NO_COVERAGE
11. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
13. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
14. decodeUtf8_4 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(c3 & 0xFF, _inputPtr-1); |
|
4945
|
|
} |
|
4946
|
13
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
9. decodeUtf8_4 : Replaced Shift Left with Shift Right → KILLED
10. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_4 : Replaced bitwise OR with AND → KILLED
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
c = (c << 6) | (c3 & 0x3F); |
|
4947
|
17
1. decodeUtf8_4 : changed conditional boundary to IF_ICMPGE → SURVIVED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED
10. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
11. decodeUtf8_4 : negated conditional → KILLED
12. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
13. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
14. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
15. decodeUtf8_4 : changed conditional boundary to IF_ICMPGT → KILLED
16. decodeUtf8_4 : changed conditional boundary to IF_ICMPLT → KILLED
17. decodeUtf8_4 : changed conditional boundary to IF_ICMPNE → KILLED
|
if ((c4 & 0xC0) != 0x080) { |
|
4948
|
8
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE
2. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE
3. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE
4. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE
5. decodeUtf8_4 : Replaced bitwise AND with OR → NO_COVERAGE
6. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
7. decodeUtf8_4 : M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
8. decodeUtf8_4 : removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
reportInvalidOther(c4 & 0xFF, _inputPtr); |
|
4949
|
|
} |
|
4950
|
20
1. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
2. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
3. decodeUtf8_4 : Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED
4. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
5. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
6. decodeUtf8_4 : Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED
7. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
8. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
9. decodeUtf8_4 : Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED
10. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED
11. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED
12. decodeUtf8_4 : Bug fixed: CRCR replace with One, Substituted 65536 with 1 → KILLED
13. decodeUtf8_4 : Replaced operate with second operand → KILLED
14. decodeUtf8_4 : Replaced Shift Left with Shift Right → KILLED
15. decodeUtf8_4 : Replaced bitwise AND with OR → KILLED
16. decodeUtf8_4 : Replaced bitwise OR with AND → KILLED
17. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
18. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
19. decodeUtf8_4 : Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
20. decodeUtf8_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
return ((c << 6) | (c4 & 0x3F)) - 0x10000; |
|
4951
|
|
} |
|
4952
|
|
} |
| | Mutations |
| 68 |
|
1.1 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 69 |
|
1.1 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 74 |
|
1.1 Location : toString Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → NO_COVERAGE 2.2 Location : toString Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE 3.3 Location : toString Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE 4.4 Location : toString Killed by : none mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::toString to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 86 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 2.2 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFNE → KILLED
|
| 89 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : parseCommentContents Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFNE → KILLED
|
| 90 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 95 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 96 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 98 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
|
| 99 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
| 107 |
|
1.1 Location : parseCommentContents Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : parseCommentContents Killed by : none negated conditional → TIMED_OUT 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPEQ → TIMED_OUT 6.6 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGE → TIMED_OUT 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 110 |
|
1.1 Location : parseCommentContents Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 111 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 112 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 114 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 116 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 117 |
|
1.1 Location : parseCommentContents Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED 7.7 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 121 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 2.2 Location : parseCommentContents Killed by : none negated conditional → TIMED_OUT 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 8.8 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 122 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 9.9 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 14.14 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 123 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : parseCommentContents Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : parseCommentContents Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFNE → KILLED
|
| 126 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 135 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 136 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 139 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 140 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 142 |
|
1.1 Location : parseCommentContents Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 144 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 147 |
|
1.1 Location : parseCommentContents Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 150 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 151 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 157 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 12.12 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 158 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 159 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 9.9 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 160 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 162 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 168 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none negated conditional → NO_COVERAGE 8.8 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 169 |
|
1.1 Location : parseCommentContents Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 170 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : parseCommentContents Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : parseCommentContents Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 171 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 172 |
|
1.1 Location : parseCommentContents Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 173 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : parseCommentContents Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : parseCommentContents Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 174 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 177 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 182 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 8.8 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 9.9 Location : parseCommentContents Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 10.10 Location : parseCommentContents Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 11.11 Location : parseCommentContents Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 12.12 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : parseCommentContents Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 15.15 Location : parseCommentContents Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 16.16 Location : parseCommentContents Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 17.17 Location : parseCommentContents Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 183 |
|
1.1 Location : parseCommentContents Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 184 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 185 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 187 |
|
1.1 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCommentContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parseCommentContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : parseCommentContents Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : parseCommentContents Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : parseCommentContents Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parseCommentContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 191 |
|
1.1 Location : parseCommentContents Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 193 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 194 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted -20 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 197 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 198 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 199 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 200 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted -21 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 203 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 9.9 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 10.10 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 11.11 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 16.16 Location : parseCommentContents Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED 20.20 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 204 |
|
1.1 Location : parseCommentContents Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportDoubleHyphenInComments → NO_COVERAGE
|
| 206 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 207 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 208 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 209 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 217 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 220 |
|
1.1 Location : parseCommentContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 221 |
|
1.1 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCommentContents Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 232 |
|
1.1 Location : handleCommentPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCommentPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 233 |
|
1.1 Location : handleCommentPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleCommentPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleCommentPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleCommentPending Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleCommentPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleCommentPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 235 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted -20 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 236 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED 13.13 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 238 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 239 |
|
1.1 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
| 240 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 242 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 243 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted -21 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 244 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCommentPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 245 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCommentPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 249 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted -21 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleCommentPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleCommentPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 250 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 251 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 252 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCommentPending Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 253 |
|
1.1 Location : handleCommentPending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportDoubleHyphenInComments → NO_COVERAGE
|
| 255 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 256 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCommentPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 257 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 260 |
|
1.1 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 8.8 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 9.9 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 10.10 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 11.11 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGE → KILLED 13.13 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGT → KILLED 14.14 Location : handleCommentPending Killed by : none changed conditional boundary to IFLE → SURVIVED 15.15 Location : handleCommentPending Killed by : none changed conditional boundary to IFLT → SURVIVED 16.16 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFNE → KILLED 17.17 Location : handleCommentPending Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 272 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 2.2 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFNE → KILLED
|
| 275 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : parsePIData Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFNE → KILLED
|
| 276 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 281 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 282 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 284 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
|
| 285 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
| 293 |
|
1.1 Location : parsePIData Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 296 |
|
1.1 Location : parsePIData Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) negated conditional → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 297 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 298 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 300 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 302 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 303 |
|
1.1 Location : parsePIData Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPLT → KILLED 7.7 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 307 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 2.2 Location : parsePIData Killed by : none negated conditional → TIMED_OUT 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 8.8 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 308 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 9.9 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 14.14 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 309 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : parsePIData Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : parsePIData Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFNE → KILLED
|
| 312 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 321 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 322 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 325 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) negated conditional → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 326 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 328 |
|
1.1 Location : parsePIData Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 330 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 333 |
|
1.1 Location : parsePIData Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 336 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 337 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 343 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 12.12 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 344 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 345 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 9.9 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 346 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 348 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 354 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 6.6 Location : parsePIData Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : parsePIData Killed by : none negated conditional → NO_COVERAGE 8.8 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 355 |
|
1.1 Location : parsePIData Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parsePIData Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 356 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : parsePIData Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : parsePIData Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 357 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : parsePIData Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 358 |
|
1.1 Location : parsePIData Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parsePIData Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 359 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : parsePIData Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : parsePIData Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 360 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : parsePIData Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 363 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 368 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 8.8 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 9.9 Location : parsePIData Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 10.10 Location : parsePIData Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 11.11 Location : parsePIData Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 12.12 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : parsePIData Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 15.15 Location : parsePIData Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 16.16 Location : parsePIData Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 17.17 Location : parsePIData Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 369 |
|
1.1 Location : parsePIData Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parsePIData Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 370 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 371 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 373 |
|
1.1 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parsePIData Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parsePIData Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parsePIData Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : parsePIData Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : parsePIData Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : parsePIData Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parsePIData Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 377 |
|
1.1 Location : parsePIData Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 380 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePIData Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 381 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted -15 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 384 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 385 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 386 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 387 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 388 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 389 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 398 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 400 |
|
1.1 Location : parsePIData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 401 |
|
1.1 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePIData Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 413 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted -15 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handlePIPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handlePIPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 414 |
|
1.1 Location : handlePIPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handlePIPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 415 |
|
1.1 Location : handlePIPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePIPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePIPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePIPending Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handlePIPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handlePIPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 417 |
|
1.1 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 2.2 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 418 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 419 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 8.8 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 421 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 7.7 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
| 422 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 424 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 6.6 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 425 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 426 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePIPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 427 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 430 |
|
1.1 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 8.8 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 9.9 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 10.10 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 11.11 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 13.13 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGT → KILLED 14.14 Location : handlePIPending Killed by : none changed conditional boundary to IFLE → SURVIVED 15.15 Location : handlePIPending Killed by : none changed conditional boundary to IFLT → SURVIVED 16.16 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFNE → KILLED 17.17 Location : handlePIPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 444 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 445 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 446 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 447 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 448 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED
|
| 450 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 451 |
|
1.1 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 452 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 455 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 456 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 459 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldDTD_CHARS mutated with null check on object → SURVIVED
|
| 460 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
| 468 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : handleDTDInternalSubset Killed by : none negated conditional → TIMED_OUT 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → TIMED_OUT 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → TIMED_OUT 7.7 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 471 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) negated conditional → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 472 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 473 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 475 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 477 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 478 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 482 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary → KILLED 2.2 Location : handleDTDInternalSubset Killed by : none negated conditional → TIMED_OUT 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 8.8 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 483 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 9.9 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 14.14 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 484 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 487 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 495 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 496 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 499 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 500 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 502 |
|
1.1 Location : handleDTDInternalSubset Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 503 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 506 |
|
1.1 Location : handleDTDInternalSubset Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 509 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 510 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 516 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 517 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 518 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 519 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 521 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 527 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 528 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 529 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 530 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 531 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 532 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 533 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 536 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 541 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 11.11 Location : handleDTDInternalSubset Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 12.12 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : handleDTDInternalSubset Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 15.15 Location : handleDTDInternalSubset Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 16.16 Location : handleDTDInternalSubset Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 17.17 Location : handleDTDInternalSubset Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 542 |
|
1.1 Location : handleDTDInternalSubset Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 543 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 544 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 546 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : handleDTDInternalSubset Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : handleDTDInternalSubset Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 550 |
|
1.1 Location : handleDTDInternalSubset Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 553 |
|
1.1 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 554 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
|
| 556 |
|
1.1 Location : handleDTDInternalSubset Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 557 |
|
1.1 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTDInternalSubset Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleDTDInternalSubset Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE
|
| 563 |
|
1.1 Location : handleDTDInternalSubset Killed by : none negated conditional → SURVIVED 2.2 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED 3.3 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFEQ → SURVIVED 4.4 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLE → SURVIVED 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 564 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED
|
| 568 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 5.5 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 7.7 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 569 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED
|
| 573 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 3.3 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inDtdDeclaration mutated with null check on object → SURVIVED 4.4 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 7.7 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 8.8 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 9.9 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGT → SURVIVED 10.10 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFGT → SURVIVED 11.11 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 12.12 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 13.13 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLT → SURVIVED 14.14 Location : handleDTDInternalSubset Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 574 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 575 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 582 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 584 |
|
1.1 Location : handleDTDInternalSubset Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testParseFull(async.TestDoctypeParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 585 |
|
1.1 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTDInternalSubset Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 597 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 2.2 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFNE → KILLED
|
| 600 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : parseCDataContents Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFNE → KILLED
|
| 601 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 605 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 606 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 608 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldOTHER_CHARS mutated with null check on object → SURVIVED
|
| 609 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
| 617 |
|
1.1 Location : parseCDataContents Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 620 |
|
1.1 Location : parseCDataContents Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 621 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 622 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 624 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 626 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 627 |
|
1.1 Location : parseCDataContents Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 7.7 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 631 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : parseCDataContents Killed by : none negated conditional → TIMED_OUT 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 8.8 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 632 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 9.9 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 14.14 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 633 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : parseCDataContents Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : parseCDataContents Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFNE → KILLED
|
| 636 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 645 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 646 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 649 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 650 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 652 |
|
1.1 Location : parseCDataContents Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 654 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 657 |
|
1.1 Location : parseCDataContents Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 660 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 661 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 667 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 12.12 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 668 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 669 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 9.9 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 670 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 672 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 678 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none negated conditional → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 679 |
|
1.1 Location : parseCDataContents Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 680 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : parseCDataContents Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 681 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 682 |
|
1.1 Location : parseCDataContents Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 683 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : parseCDataContents Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 684 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 687 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 692 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 9.9 Location : parseCDataContents Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 10.10 Location : parseCDataContents Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 11.11 Location : parseCDataContents Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 12.12 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : parseCDataContents Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 15.15 Location : parseCDataContents Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 16.16 Location : parseCDataContents Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 17.17 Location : parseCDataContents Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 693 |
|
1.1 Location : parseCDataContents Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 694 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 695 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 697 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : parseCDataContents Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : parseCDataContents Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 701 |
|
1.1 Location : parseCDataContents Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 703 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 704 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted -30 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 708 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 709 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 711 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 712 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted -31 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 715 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 716 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 717 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 718 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 719 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 720 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 722 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 13.13 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 723 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) Changed increment from 1 to -1 → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 9.9 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Removed unary increment of local variable → KILLED 10.10 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 724 |
|
1.1 Location : parseCDataContents Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 725 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 726 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 728 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) Changed increment from 1 to -1 → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 8.8 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 9.9 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Removed unary increment of local variable → KILLED 10.10 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 732 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 733 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 8.8 Location : parseCDataContents Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 9.9 Location : parseCDataContents Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 10.10 Location : parseCDataContents Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 734 |
|
1.1 Location : parseCDataContents Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none negated conditional → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : parseCDataContents Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 735 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 736 |
|
1.1 Location : parseCDataContents Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseCDataContents Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseCDataContents Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parseCDataContents Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 746 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 749 |
|
1.1 Location : parseCDataContents Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 750 |
|
1.1 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseCDataContents Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 761 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted -30 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 762 |
|
1.1 Location : handleCDataPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 763 |
|
1.1 Location : handleCDataPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleCDataPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleCDataPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleCDataPending Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleCDataPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleCDataPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 765 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 13.13 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 767 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 7.7 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
| 768 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 7.7 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 770 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 771 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted -31 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 772 |
|
1.1 Location : handleCDataPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 773 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 777 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted -31 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 778 |
|
1.1 Location : handleCDataPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 779 |
|
1.1 Location : handleCDataPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleCDataPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleCDataPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleCDataPending Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleCDataPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleCDataPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 781 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 782 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 783 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 784 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 785 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 786 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 788 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleCDataPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 789 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 790 |
|
1.1 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
| 791 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 7.7 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 793 |
|
1.1 Location : handleCDataPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleCDataPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleCDataPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleCDataPending Killed by : none Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE 5.5 Location : handleCDataPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleCDataPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE 7.7 Location : handleCDataPending Killed by : none removed call to com/fasterxml/aalto/util/TextBuilder::append → NO_COVERAGE
|
| 796 |
|
1.1 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 8.8 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 9.9 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 10.10 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 11.11 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFGE → KILLED 13.13 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFGT → KILLED 14.14 Location : handleCDataPending Killed by : none changed conditional boundary to IFLE → SURVIVED 15.15 Location : handleCDataPending Killed by : none changed conditional boundary to IFLT → SURVIVED 16.16 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IFNE → KILLED 17.17 Location : handleCDataPending Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 808 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 809 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 813 |
|
1.1 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 814 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 817 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED
|
| 818 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 819 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 821 |
|
1.1 Location : startCharactersPending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 822 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 7.7 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
| 827 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 8.8 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
| 830 |
|
1.1 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
| 835 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 836 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced Shift Right with Shift Left → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 837 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : startCharactersPending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED
|
| 838 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 839 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 840 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 842 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 845 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 847 |
|
1.1 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
| 852 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 854 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Right with Shift Left → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFEQ → KILLED 9.9 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 10.10 Location : startCharactersPending Killed by : none changed conditional boundary to IFGT → SURVIVED 11.11 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLE → KILLED 12.12 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLT → KILLED
|
| 855 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 856 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 857 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 859 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 860 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 861 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 9.9 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 10.10 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 11.11 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 12.12 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 13.13 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 862 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 864 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 867 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 9.9 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Right with Shift Left → KILLED 10.10 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 868 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Right with Shift Left → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 870 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFEQ → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 4.4 Location : startCharactersPending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLE → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLT → KILLED
|
| 871 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharactersPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 872 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 873 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 875 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 876 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 878 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 6.6 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 883 |
|
1.1 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) removed call to com/fasterxml/aalto/util/TextBuilder::resetWithSurrogate → KILLED
|
| 884 |
|
1.1 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 7.7 Location : startCharactersPending Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 891 |
|
1.1 Location : startCharactersPending Killed by : none negated conditional → SURVIVED 2.2 Location : startCharactersPending Killed by : none negated conditional → SURVIVED 3.3 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgCoalescing mutated with null check on object → SURVIVED 4.4 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED 5.5 Location : startCharactersPending Killed by : none changed conditional boundary to IFEQ → SURVIVED 6.6 Location : startCharactersPending Killed by : none changed conditional boundary to IFGE → SURVIVED 7.7 Location : startCharactersPending Killed by : none changed conditional boundary to IFGE → SURVIVED 8.8 Location : startCharactersPending Killed by : none changed conditional boundary to IFGT → SURVIVED 9.9 Location : startCharactersPending Killed by : none changed conditional boundary to IFGT → SURVIVED 10.10 Location : startCharactersPending Killed by : none changed conditional boundary to IFLE → SURVIVED 11.11 Location : startCharactersPending Killed by : none changed conditional boundary to IFLE → SURVIVED 12.12 Location : startCharactersPending Killed by : none changed conditional boundary to IFLT → SURVIVED 13.13 Location : startCharactersPending Killed by : none changed conditional boundary to IFLT → SURVIVED 14.14 Location : startCharactersPending Killed by : none changed conditional boundary to IFNE → SURVIVED
|
| 893 |
|
1.1 Location : startCharactersPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 895 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 896 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : startCharactersPending Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : startCharactersPending Killed by : none changed conditional boundary to IFLT → SURVIVED 7.7 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED
|
| 897 |
|
1.1 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
|
| 899 |
|
1.1 Location : startCharactersPending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
| 901 |
|
1.1 Location : startCharactersPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : startCharactersPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 910 |
|
1.1 Location : finishCharactersCoalescing Killed by : none negated conditional → NO_COVERAGE 2.2 Location : finishCharactersCoalescing Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE 3.3 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 7.7 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 911 |
|
1.1 Location : finishCharactersCoalescing Killed by : none negated conditional → NO_COVERAGE 2.2 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : finishCharactersCoalescing Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 912 |
|
1.1 Location : finishCharactersCoalescing Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharactersCoalescing Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharactersCoalescing Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharactersCoalescing Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : finishCharactersCoalescing Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : finishCharactersCoalescing Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 928 |
|
1.1 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 9.9 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 10.10 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 11.11 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 12.12 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : needMoreInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : needMoreInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 16.16 Location : needMoreInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_endOfInput mutated with null check on object → SURVIVED 17.17 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 18.18 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : needMoreInput Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : needMoreInput Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 21.21 Location : needMoreInput Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 22.22 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 23.23 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 24.24 Location : needMoreInput Killed by : none changed conditional boundary to IFGT → SURVIVED 25.25 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 26.26 Location : needMoreInput Killed by : none changed conditional boundary to IFLT → SURVIVED 27.27 Location : needMoreInput Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 935 |
|
1.1 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : feedInput Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 936 |
|
1.1 Location : feedInput Killed by : none Replaced operate with second operand → NO_COVERAGE 2.2 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 3.3 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 939 |
|
1.1 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_endOfInput mutated with null check on object → SURVIVED 3.3 Location : feedInput Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : feedInput Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 943 |
|
1.1 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 2.2 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED 3.3 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_origBufferLen mutated with null check on object → SURVIVED 4.4 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pastBytesOrChars mutated with null check on object → SURVIVED
|
| 944 |
|
1.1 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 2.2 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_rowStartOffset mutated with null check on object → SURVIVED 3.3 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_origBufferLen mutated with null check on object → SURVIVED 4.4 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_rowStartOffset mutated with null check on object → SURVIVED
|
| 950 |
|
1.1 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
| 951 |
|
1.1 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 952 |
|
1.1 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 953 |
|
1.1 Location : feedInput Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 2.2 Location : feedInput Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_origBufferLen mutated with null check on object → SURVIVED
|
| 966 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 968 |
|
1.1 Location : nextFromProlog Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::setStartLocation → SURVIVED
|
| 971 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 972 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 973 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 974 |
|
1.1 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 975 |
|
1.1 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 976 |
|
1.1 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 2.2 Location : nextFromProlog Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
| 977 |
|
1.1 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 980 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 981 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 985 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 987 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 988 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 989 |
|
1.1 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 992 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : nextFromProlog Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 994 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED
|
| 995 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 998 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional of IF_ACMP → KILLED
|
| 999 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 1000 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1002 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1004 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1005 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1006 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -5 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 1008 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED
|
| 1009 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1011 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional of IF_ACMP → KILLED
|
| 1012 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 1013 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1015 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1018 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1019 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 1020 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1024 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : nextFromProlog Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : nextFromProlog Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 1025 |
|
1.1 Location : nextFromProlog Killed by : none negated conditional → NO_COVERAGE 2.2 Location : nextFromProlog Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : nextFromProlog Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : nextFromProlog Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : nextFromProlog Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : nextFromProlog Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 1026 |
|
1.1 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → NO_COVERAGE 2.2 Location : nextFromProlog Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1029 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 5.5 Location : nextFromProlog Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 1030 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1031 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_endOfInput mutated with null check on object → SURVIVED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : nextFromProlog Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 1032 |
|
1.1 Location : nextFromProlog Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::setStartLocation → SURVIVED
|
| 1033 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1035 |
|
1.1 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1037 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1042 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1043 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1046 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 18.18 Location : nextFromProlog Killed by : none negated conditional → SURVIVED 19.19 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 20.20 Location : nextFromProlog Killed by : none negated conditional → SURVIVED 21.21 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 33.33 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 37.37 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 41.41 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1049 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 3.3 Location : nextFromProlog Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : nextFromProlog Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1050 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_endOfInput mutated with null check on object → SURVIVED 3.3 Location : nextFromProlog Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGT → KILLED 5.5 Location : nextFromProlog Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED 7.7 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFNE → KILLED
|
| 1051 |
|
1.1 Location : nextFromProlog Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::setStartLocation → NO_COVERAGE
|
| 1052 |
|
1.1 Location : nextFromProlog Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : nextFromProlog Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : nextFromProlog Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : nextFromProlog Killed by : none Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE 5.5 Location : nextFromProlog Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : nextFromProlog Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1054 |
|
1.1 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1057 |
|
1.1 Location : nextFromProlog Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1060 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1061 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1062 |
|
1.1 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1064 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1065 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1066 |
|
1.1 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1067 |
|
1.1 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1069 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1070 |
|
1.1 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1071 |
|
1.1 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1072 |
|
1.1 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1074 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 7.7 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 12.12 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED 13.13 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 14.14 Location : nextFromProlog Killed by : none changed conditional boundary to IFGE → SURVIVED 15.15 Location : nextFromProlog Killed by : none changed conditional boundary to IFGT → SURVIVED 16.16 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 17.17 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 1075 |
|
1.1 Location : nextFromProlog Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1077 |
|
1.1 Location : nextFromProlog Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1079 |
|
1.1 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : nextFromProlog Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1080 |
|
1.1 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1083 |
|
1.1 Location : nextFromProlog Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1087 |
|
1.1 Location : nextFromProlog Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1089 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1091 |
|
1.1 Location : nextFromProlog Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1093 |
|
1.1 Location : nextFromProlog Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1095 |
|
1.1 Location : nextFromProlog Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1097 |
|
1.1 Location : nextFromProlog Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1099 |
|
1.1 Location : nextFromProlog Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1106 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : nextFromTree Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : nextFromTree Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1110 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : nextFromTree Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1111 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_isEmptyTag mutated with null check on object → SURVIVED 3.3 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : nextFromTree Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 1112 |
|
1.1 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
|
| 1114 |
|
1.1 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 7.7 Location : nextFromTree Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1116 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromTree Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1117 |
|
1.1 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED
|
| 1119 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : nextFromTree Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 4.4 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_lastNsDecl mutated with null check on object → SURVIVED 5.5 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_lastNsDecl mutated with null check on object → SURVIVED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1120 |
|
1.1 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_lastNsDecl mutated with null check on object → SURVIVED 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_lastNsDecl mutated with null check on object → SURVIVED
|
| 1125 |
|
1.1 Location : nextFromTree Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::setStartLocation → SURVIVED
|
| 1132 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED 3.3 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : nextFromTree Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 1133 |
|
1.1 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFEQ → KILLED 3.3 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 4.4 Location : nextFromTree Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLE → KILLED 6.6 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLT → KILLED
|
| 1134 |
|
1.1 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1136 |
|
1.1 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
|
| 1138 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 1139 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1143 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromTree Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromTree Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1144 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 5.5 Location : nextFromTree Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 1148 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : nextFromTree Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 1149 |
|
1.1 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1150 |
|
1.1 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1152 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1153 |
|
1.1 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1155 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1156 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1157 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1158 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1159 |
|
1.1 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1161 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1162 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1166 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1167 |
|
1.1 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1169 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1171 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1172 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 33 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1173 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1174 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromTree Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1175 |
|
1.1 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1176 |
|
1.1 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1177 |
|
1.1 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1178 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1179 |
|
1.1 Location : nextFromTree Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1182 |
|
1.1 Location : nextFromTree Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1184 |
|
1.1 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1185 |
|
1.1 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1186 |
|
1.1 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1187 |
|
1.1 Location : nextFromTree Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1188 |
|
1.1 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1189 |
|
1.1 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1192 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1193 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1194 |
|
1.1 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1196 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1198 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1199 |
|
1.1 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1200 |
|
1.1 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1201 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : nextFromTree Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1202 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1203 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1205 |
|
1.1 Location : nextFromTree Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
| 1215 |
|
1.1 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1217 |
|
1.1 Location : nextFromTree Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1219 |
|
1.1 Location : nextFromTree Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1221 |
|
1.1 Location : nextFromTree Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1223 |
|
1.1 Location : nextFromTree Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1225 |
|
1.1 Location : nextFromTree Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1227 |
|
1.1 Location : nextFromTree Killed by : none negated conditional → SURVIVED 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED 3.3 Location : nextFromTree Killed by : none changed conditional boundary to IFEQ → SURVIVED 4.4 Location : nextFromTree Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : nextFromTree Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : nextFromTree Killed by : none changed conditional boundary to IFLE → SURVIVED 7.7 Location : nextFromTree Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 1229 |
|
1.1 Location : nextFromTree Killed by : none negated conditional → NO_COVERAGE 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgCoalescing mutated with null check on object → NO_COVERAGE 3.3 Location : nextFromTree Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : nextFromTree Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : nextFromTree Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : nextFromTree Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 7.7 Location : nextFromTree Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 1230 |
|
1.1 Location : nextFromTree Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1233 |
|
1.1 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : nextFromTree Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 4.4 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGT → KILLED 5.5 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : nextFromTree Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IFNE → KILLED
|
| 1234 |
|
1.1 Location : nextFromTree Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1240 |
|
1.1 Location : nextFromTree Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1251 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 3.3 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handlePrologDeclStart Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1252 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1254 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1256 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 5.5 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handlePrologDeclStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handlePrologDeclStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1257 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1258 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1259 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1261 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 68 with 1 → KILLED 5.5 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handlePrologDeclStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handlePrologDeclStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handlePrologDeclStart Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1262 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED 5.5 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1263 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePrologDeclStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1264 |
|
1.1 Location : handlePrologDeclStart Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1266 |
|
1.1 Location : handlePrologDeclStart Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1267 |
|
1.1 Location : handlePrologDeclStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePrologDeclStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePrologDeclStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePrologDeclStart Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handlePrologDeclStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handlePrologDeclStart Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1280 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1281 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 1283 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -5 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : startXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1284 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : startXmlDeclaration Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 13.13 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1285 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 1286 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1287 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 1289 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1290 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted -6 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 1291 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1292 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 1295 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted -6 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : startXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1296 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1297 |
|
1.1 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1298 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1299 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted -7 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 1300 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 1303 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 5.5 Location : startXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 7.7 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1304 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 1305 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1306 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1307 |
|
1.1 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 2.2 Location : startXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
| 1308 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 1310 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted -7 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : startXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : startXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : startXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1311 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1312 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 1314 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 5.5 Location : startXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 7.7 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1315 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 1316 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1317 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1318 |
|
1.1 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 2.2 Location : startXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
| 1319 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 1324 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 1325 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1326 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1327 |
|
1.1 Location : startXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::startXmlDeclaration to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 1340 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1341 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 1342 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1347 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → TIMED_OUT 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → TIMED_OUT 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1348 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1351 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1352 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 18.18 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 19.19 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 20.20 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 21.21 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1353 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1355 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1358 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1363 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1366 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1367 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1370 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1371 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
| 1373 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1376 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1379 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1380 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
| 1382 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1383 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1388 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1392 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1393 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1394 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1397 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1398 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1403 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1406 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 1407 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 14.14 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 15.15 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 16.16 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 23.23 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 24.24 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1408 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE 7.7 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1411 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 1412 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 11.11 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 12.12 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 14.14 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 15.15 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 16.16 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 18.18 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 19.19 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 20.20 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1413 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1417 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlVersion → KILLED
|
| 1418 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1422 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1423 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1426 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlVersion → KILLED
|
| 1427 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1428 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1435 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1436 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1437 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 20 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
| 1440 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 18.18 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 19.19 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 20.20 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 21.21 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1441 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1443 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1446 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1452 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1456 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1457 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1458 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 20 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1461 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1462 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1466 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFGT → KILLED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFNE → KILLED
|
| 1467 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1468 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFGT → KILLED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFNE → KILLED
|
| 1469 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1472 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
| 1478 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1482 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFGT → KILLED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFNE → KILLED
|
| 1483 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1484 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFGT → KILLED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFNE → KILLED
|
| 1485 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1488 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
| 1490 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1495 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1499 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1500 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1501 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1504 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1505 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1510 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1513 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 1514 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 14.14 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 15.15 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 16.16 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 23.23 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 24.24 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1515 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE 7.7 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1517 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1519 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 1520 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 11.11 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 12.12 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 14.14 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 15.15 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 16.16 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 18.18 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 19.19 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 20.20 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 1521 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1525 |
|
1.1 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlEncoding → NO_COVERAGE
|
| 1526 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
| 1530 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1531 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1534 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlEncoding → KILLED
|
| 1535 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1536 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1543 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1544 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1545 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 20 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
| 1548 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 18.18 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 19.19 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 20.20 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 21.21 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1549 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 14 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1551 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1554 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1560 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1564 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1565 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1566 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 20 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1569 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1570 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1573 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1574 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
| 1577 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1581 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1584 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1585 |
|
1.1 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
| 1587 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1588 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1593 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1597 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1598 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1599 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1602 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 17 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1603 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1608 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1611 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 1612 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 14.14 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 15.15 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 16.16 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 18.18 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 22.22 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 23.23 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 24.24 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1613 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE 7.7 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1616 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 1617 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 11.11 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 12.12 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 14.14 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 15.15 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 16.16 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 18.18 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 19.19 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 20.20 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1618 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 18 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1622 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlStandalone → KILLED
|
| 1623 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 19 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1628 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 1629 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 18 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1632 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetXmlStandalone → KILLED
|
| 1633 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 19 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1634 |
|
1.1 Location : handleXmlDeclaration Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleXmlDeclaration Killed by : none negated conditional → SURVIVED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1639 |
|
1.1 Location : handleXmlDeclaration Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGE → KILLED 4.4 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1642 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 16.16 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 20.20 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1643 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : handleXmlDeclaration Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 11.11 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 13.13 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 14.14 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1645 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 20 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1646 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1653 |
|
1.1 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1654 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1655 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1656 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 9.9 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 10.10 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 11.11 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 16.16 Location : handleXmlDeclaration Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 20.20 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1657 |
|
1.1 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleXmlDeclaration Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : handleXmlDeclaration Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 11.11 Location : handleXmlDeclaration Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 13.13 Location : handleXmlDeclaration Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 14.14 Location : handleXmlDeclaration Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1659 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1666 |
|
1.1 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleXmlDeclaration Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1672 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1673 |
|
1.1 Location : handleDTD Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleDTD Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleDTD Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleDTD Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleDTD Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 1674 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1677 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1678 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 9.9 Location : handleDTD Killed by : none changed conditional boundary to IFLE → SURVIVED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 1679 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 50 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1681 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1686 |
|
1.1 Location : handleDTD Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 3.3 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → TIMED_OUT 7.7 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → TIMED_OUT 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1687 |
|
1.1 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1689 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 68 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1690 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1691 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1692 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1694 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED
|
| 1695 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologProblem → NO_COVERAGE
|
| 1697 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1700 |
|
1.1 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1701 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1702 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1703 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1705 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED
|
| 1706 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologProblem → NO_COVERAGE
|
| 1708 |
|
1.1 Location : handleDTD Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleDTD Killed by : none negated conditional → TIMED_OUT 3.3 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → TIMED_OUT 6.6 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → TIMED_OUT 7.7 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → TIMED_OUT 8.8 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → TIMED_OUT 9.9 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1714 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1715 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 18.18 Location : handleDTD Killed by : none negated conditional → SURVIVED 19.19 Location : handleDTD Killed by : none negated conditional → SURVIVED 20.20 Location : handleDTD Killed by : none negated conditional → SURVIVED 21.21 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1716 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1718 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1723 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleDTD Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1726 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : none negated conditional → SURVIVED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1727 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1730 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1733 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 1736 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1737 |
|
1.1 Location : handleDTD Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleDTD Killed by : none negated conditional → SURVIVED 3.3 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1743 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1744 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 1745 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1746 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1747 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1749 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 18.18 Location : handleDTD Killed by : none negated conditional → SURVIVED 19.19 Location : handleDTD Killed by : none negated conditional → SURVIVED 20.20 Location : handleDTD Killed by : none negated conditional → SURVIVED 21.21 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1750 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1752 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1757 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleDTD Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1761 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1762 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1763 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
| 1764 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
| 1765 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 11 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 1768 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED
|
| 1769 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1773 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 1774 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1775 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 1776 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1778 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologProblem → NO_COVERAGE
|
| 1786 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED
|
| 1787 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1791 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 1792 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1793 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 1794 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1796 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologProblem → NO_COVERAGE
|
| 1803 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1804 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 18.18 Location : handleDTD Killed by : none negated conditional → SURVIVED 19.19 Location : handleDTD Killed by : none negated conditional → SURVIVED 20.20 Location : handleDTD Killed by : none negated conditional → SURVIVED 21.21 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1805 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1807 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1814 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1815 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 18.18 Location : handleDTD Killed by : none negated conditional → SURVIVED 19.19 Location : handleDTD Killed by : none negated conditional → SURVIVED 20.20 Location : handleDTD Killed by : none negated conditional → SURVIVED 21.21 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1816 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1818 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1824 |
|
1.1 Location : handleDTD Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleDTD Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleDTD Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleDTD Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1827 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 1828 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED 9.9 Location : handleDTD Killed by : none negated conditional → SURVIVED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 14.14 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 15.15 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 16.16 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 18.18 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 23.23 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1829 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE 7.7 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1832 |
|
1.1 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 1833 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 9.9 Location : handleDTD Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleDTD Killed by : none negated conditional → SURVIVED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 16.16 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 18.18 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 20.20 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 21.21 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 23.23 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 25.25 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED
|
| 1834 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1838 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetPublicId → KILLED
|
| 1839 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1843 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 11.11 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED
|
| 1846 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetPublicId → KILLED
|
| 1847 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1848 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 3.3 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1854 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1855 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 18.18 Location : handleDTD Killed by : none negated conditional → SURVIVED 19.19 Location : handleDTD Killed by : none negated conditional → SURVIVED 20.20 Location : handleDTD Killed by : none negated conditional → SURVIVED 21.21 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1856 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1858 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1864 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleDTD Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1867 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 1868 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 14.14 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED 15.15 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 16.16 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 23.23 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1869 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE 7.7 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1872 |
|
1.1 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 1873 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 9.9 Location : handleDTD Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleDTD Killed by : none negated conditional → SURVIVED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 16.16 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 18.18 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 20.20 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 21.21 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 22.22 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 23.23 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 24.24 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 25.25 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED
|
| 1874 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 14 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1878 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetSystemId → KILLED
|
| 1879 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1883 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 11.11 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 12.12 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 13.13 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED
|
| 1886 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndSetSystemId → KILLED
|
| 1887 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1888 |
|
1.1 Location : handleDTD Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleDTD Killed by : none negated conditional → SURVIVED 3.3 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1894 |
|
1.1 Location : handleDTD Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleDTD Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleDTD Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1898 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1899 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1900 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1901 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1902 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1904 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1905 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → NO_COVERAGE 7.7 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1908 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1909 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGE → KILLED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFGT → KILLED 9.9 Location : handleDTD Killed by : none changed conditional boundary to IFLE → SURVIVED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IFNE → KILLED
|
| 1910 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 50 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1912 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1917 |
|
1.1 Location : handleDTD Killed by : none negated conditional → TIMED_OUT 2.2 Location : handleDTD Killed by : none changed conditional boundary to IFEQ → TIMED_OUT 3.3 Location : handleDTD Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleDTD Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleDTD Killed by : none changed conditional boundary to IFLE → TIMED_OUT 6.6 Location : handleDTD Killed by : none changed conditional boundary to IFLT → TIMED_OUT
|
| 1921 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1922 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) negated conditional → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDTD Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 1923 |
|
1.1 Location : handleDTD Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDTD Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDTD Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDTD Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleDTD Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDTD Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1926 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 1927 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 1928 |
|
1.1 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 11 with 1 → KILLED 5.5 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDTD Killed by : async.TestDoctypeParsing.testSkipFull(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1933 |
|
1.1 Location : handleDTD Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : handleDTD Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1938 |
|
1.1 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 1939 |
|
1.1 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary → KILLED 2.2 Location : parseDtdId Killed by : none negated conditional → TIMED_OUT 3.3 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseDtdId Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseDtdId Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 9.9 Location : parseDtdId Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 1940 |
|
1.1 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Replaced operate with second operand → KILLED 9.9 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1941 |
|
1.1 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 3.3 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 4.4 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 5.5 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1942 |
|
1.1 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 1943 |
|
1.1 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1945 |
|
1.1 Location : parseDtdId Killed by : none negated conditional → SURVIVED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 3.3 Location : parseDtdId Killed by : none changed conditional boundary to IFEQ → SURVIVED 4.4 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFEQ → KILLED 5.5 Location : parseDtdId Killed by : none changed conditional boundary to IFGE → SURVIVED 6.6 Location : parseDtdId Killed by : none changed conditional boundary to IFGE → SURVIVED 7.7 Location : parseDtdId Killed by : none changed conditional boundary to IFGT → SURVIVED 8.8 Location : parseDtdId Killed by : none changed conditional boundary to IFGT → SURVIVED 9.9 Location : parseDtdId Killed by : none changed conditional boundary to IFLE → SURVIVED 10.10 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLE → KILLED 11.11 Location : parseDtdId Killed by : none changed conditional boundary to IFLT → SURVIVED 12.12 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IFLT → KILLED
|
| 1946 |
|
1.1 Location : parseDtdId Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseDtdId Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseDtdId Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseDtdId Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : parseDtdId Killed by : none negated conditional → NO_COVERAGE 6.6 Location : parseDtdId Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : parseDtdId Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 8.8 Location : parseDtdId Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 9.9 Location : parseDtdId Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 10.10 Location : parseDtdId Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 11.11 Location : parseDtdId Killed by : none changed conditional boundary to IFNE → NO_COVERAGE 12.12 Location : parseDtdId Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1948 |
|
1.1 Location : parseDtdId Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 3.3 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseDtdId Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1949 |
|
1.1 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 1950 |
|
1.1 Location : parseDtdId Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseDtdId Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseDtdId Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseDtdId Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parseDtdId Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 1952 |
|
1.1 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 1954 |
|
1.1 Location : parseDtdId Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 1955 |
|
1.1 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseDtdId Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1968 |
|
1.1 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 1969 |
|
1.1 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : parseXmlDeclAttr Killed by : none negated conditional → TIMED_OUT 3.3 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 9.9 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 1970 |
|
1.1 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 9.9 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Replaced bitwise AND with OR → KILLED 11.11 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 1971 |
|
1.1 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 3.3 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 4.4 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1972 |
|
1.1 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 1973 |
|
1.1 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1976 |
|
1.1 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 8.8 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 122 with 1 → KILLED 9.9 Location : parseXmlDeclAttr Killed by : none changed conditional boundary → SURVIVED 10.10 Location : parseXmlDeclAttr Killed by : none changed conditional boundary → SURVIVED 11.11 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 12.12 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 13.13 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 17.17 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 18.18 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 22.22 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 23.23 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 24.24 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 25.25 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 26.26 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1977 |
|
1.1 Location : parseXmlDeclAttr Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseXmlDeclAttr Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseXmlDeclAttr Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseXmlDeclAttr Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : parseXmlDeclAttr Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : parseXmlDeclAttr Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportPrologUnexpChar → NO_COVERAGE
|
| 1979 |
|
1.1 Location : parseXmlDeclAttr Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : parseXmlDeclAttr Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 1980 |
|
1.1 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 1981 |
|
1.1 Location : parseXmlDeclAttr Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseXmlDeclAttr Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseXmlDeclAttr Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseXmlDeclAttr Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : parseXmlDeclAttr Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 1983 |
|
1.1 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Changed increment from 1 to -1 → KILLED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) UOI Mutator: Reversed increment of local variable → KILLED
|
| 1985 |
|
1.1 Location : parseXmlDeclAttr Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 1986 |
|
1.1 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseXmlDeclAttr Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 1997 |
|
1.1 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 1998 |
|
1.1 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2000 |
|
1.1 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCData Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2001 |
|
1.1 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2003 |
|
1.1 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCData Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleCData Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2008 |
|
1.1 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2010 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 67 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2011 |
|
1.1 Location : handleCDataStartMarker Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
| 2013 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2014 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2015 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2017 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2020 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 68 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2021 |
|
1.1 Location : handleCDataStartMarker Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
| 2023 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2024 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2025 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2027 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2030 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2031 |
|
1.1 Location : handleCDataStartMarker Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
| 2033 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2034 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2035 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2037 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2040 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 84 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2041 |
|
1.1 Location : handleCDataStartMarker Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
| 2043 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2044 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2045 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2047 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2050 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2051 |
|
1.1 Location : handleCDataStartMarker Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
| 2053 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2054 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2055 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2057 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Replaced operate with second operand → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2060 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 91 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2061 |
|
1.1 Location : handleCDataStartMarker Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
| 2063 |
|
1.1 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 2064 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2065 |
|
1.1 Location : handleCDataStartMarker Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) negated conditional → KILLED 3.3 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleCDataStartMarker Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleCDataStartMarker Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2066 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2068 |
|
1.1 Location : handleCDataStartMarker Killed by : async.TestCDataParsing.testCDataSkip(async.TestCDataParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2070 |
|
1.1 Location : handleCDataStartMarker Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2082 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2083 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2088 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2089 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2091 |
|
1.1 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2093 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2094 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 2.2 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2095 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2096 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2098 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2099 |
|
1.1 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 2.2 Location : handlePI Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
| 2100 |
|
1.1 Location : handlePI Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2101 |
|
1.1 Location : handlePI Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePI Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePI Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePI Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handlePI Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handlePI Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2107 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2108 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2110 |
|
1.1 Location : handlePI Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePI Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePI Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePI Killed by : none Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE 5.5 Location : handlePI Killed by : none changed conditional boundary → NO_COVERAGE 6.6 Location : handlePI Killed by : none negated conditional → NO_COVERAGE 7.7 Location : handlePI Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handlePI Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 10.10 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 11.11 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 12.12 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 13.13 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 14.14 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 19.19 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 20.20 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 21.21 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 22.22 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2111 |
|
1.1 Location : handlePI Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePI Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePI Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePI Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handlePI Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handlePI Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2115 |
|
1.1 Location : handlePI Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePI Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePI Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePI Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 5.5 Location : handlePI Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
| 2118 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 11.11 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 14.14 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 15.15 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 16.16 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 17.17 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 18.18 Location : handlePI Killed by : none negated conditional → SURVIVED 19.19 Location : handlePI Killed by : none negated conditional → SURVIVED 20.20 Location : handlePI Killed by : none negated conditional → SURVIVED 21.21 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 22.22 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 23.23 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 24.24 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 25.25 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 26.26 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 28.28 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 29.29 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 30.30 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 31.31 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 32.32 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 33.33 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 34.34 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 35.35 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 36.36 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 37.37 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 38.38 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPLT → KILLED 39.39 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 40.40 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 41.41 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 42.42 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPNE → KILLED 43.43 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 44.44 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2120 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handlePI Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLT → KILLED
|
| 2121 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2122 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2124 |
|
1.1 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 2126 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 6.6 Location : handlePI Killed by : none changed conditional boundary → SURVIVED 7.7 Location : handlePI Killed by : none negated conditional → SURVIVED 8.8 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 11.11 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 12.12 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 13.13 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 14.14 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 15.15 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 16.16 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 17.17 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2127 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 8.8 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 9.9 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 10.10 Location : handlePI Killed by : none negated conditional → SURVIVED 11.11 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 18.18 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2128 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handlePI Killed by : none negated conditional → SURVIVED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2129 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2133 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2134 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2137 |
|
1.1 Location : handlePI Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportMissingPISpace → NO_COVERAGE
|
| 2141 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handlePI Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLT → KILLED
|
| 2142 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2145 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2146 |
|
1.1 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 2147 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2151 |
|
1.1 Location : handlePI Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePI Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePI Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePI Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handlePI Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handlePI Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2153 |
|
1.1 Location : handlePI Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePI Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePI Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePI Killed by : none Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE 5.5 Location : handlePI Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handlePI Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 8.8 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 11.11 Location : handlePI Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2154 |
|
1.1 Location : handlePI Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportMissingPISpace → NO_COVERAGE
|
| 2160 |
|
1.1 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2161 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 2.2 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2162 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2164 |
|
1.1 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED 2.2 Location : handlePI Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::checkPITargetName → SURVIVED
|
| 2165 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2169 |
|
1.1 Location : handlePI Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2173 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2174 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 2175 |
|
1.1 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePI Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2180 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 6.6 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2181 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2183 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary → KILLED 2.2 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 3.3 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2184 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2186 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Replaced operate with second operand → KILLED 6.6 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2188 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 2.2 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 3.3 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFGE → KILLED 5.5 Location : handleComment Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IFLE → KILLED 7.7 Location : handleComment Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 2189 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 5.5 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) negated conditional → KILLED 6.6 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2190 |
|
1.1 Location : handleComment Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportTreeUnexpChar → NO_COVERAGE
|
| 2192 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2193 |
|
1.1 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 2194 |
|
1.1 Location : handleComment Killed by : async.TestCommentParsing.testParseComments(async.TestCommentParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2196 |
|
1.1 Location : handleComment Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleComment Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleComment Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleComment Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 5.5 Location : handleComment Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleComment Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE 8.8 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 2198 |
|
1.1 Location : handleComment Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleComment Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleComment Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleComment Killed by : none Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE 5.5 Location : handleComment Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleComment Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 8.8 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 11.11 Location : handleComment Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2199 |
|
1.1 Location : handleComment Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportDoubleHyphenInComments → NO_COVERAGE
|
| 2201 |
|
1.1 Location : handleComment Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleComment Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleComment Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleComment Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleComment Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
| 2202 |
|
1.1 Location : handleComment Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleComment Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleComment Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleComment Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleComment Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleComment Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
| 2203 |
|
1.1 Location : handleComment Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleComment Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleComment Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleComment Killed by : none Bug fixed: CRCR replace with One, Substituted 5 with 1 → NO_COVERAGE 5.5 Location : handleComment Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleComment Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2205 |
|
1.1 Location : handleComment Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2225 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2226 |
|
1.1 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 2.2 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2227 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 8.8 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 9.9 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 10.10 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) Replaced bitwise AND with OR → KILLED 11.11 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 12.12 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 15.15 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 16.16 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 17.17 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testEncodingDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 19.19 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2229 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) negated conditional → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2230 |
|
1.1 Location : asyncSkipSpace Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 2231 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2233 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2235 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2236 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2237 |
|
1.1 Location : asyncSkipSpace Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 2238 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2239 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2240 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2243 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 11.11 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : asyncSkipSpace Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 2244 |
|
1.1 Location : asyncSkipSpace Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : asyncSkipSpace Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : asyncSkipSpace Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : asyncSkipSpace Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : asyncSkipSpace Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : asyncSkipSpace Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : asyncSkipSpace Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2246 |
|
1.1 Location : asyncSkipSpace Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 2247 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 8.8 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 9.9 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 10.10 Location : asyncSkipSpace Killed by : none negated conditional → SURVIVED 11.11 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 15.15 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 17.17 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 20.20 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 21.21 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 22.22 Location : asyncSkipSpace Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2248 |
|
1.1 Location : asyncSkipSpace Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
| 2251 |
|
1.1 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : asyncSkipSpace Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : asyncSkipSpace Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2262 |
|
1.1 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 2263 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2264 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 2265 |
|
1.1 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 2266 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2267 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -70 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2268 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2269 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2271 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2275 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED
|
| 2277 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2278 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2281 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED
|
| 2282 |
|
1.1 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2283 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 7.7 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED 8.8 Location : handleEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2286 |
|
1.1 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
| 2287 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 2288 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 2289 |
|
1.1 Location : handleEntityStartingToken Killed by : none negated conditional → SURVIVED 2.2 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED 3.3 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IFLT → SURVIVED 7.7 Location : handleEntityStartingToken Killed by : none changed conditional boundary to IFNE → SURVIVED
|
| 2290 |
|
1.1 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
|
| 2292 |
|
1.1 Location : handleEntityStartingToken Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
| 2294 |
|
1.1 Location : handleEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : handleEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2305 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED
|
| 2306 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED 2.2 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2309 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleNamedEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleNamedEntityStartingToken Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED
|
| 2310 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2311 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNamedEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNamedEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNamedEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : handleNamedEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 7.7 Location : handleNamedEntityStartingToken Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2314 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
| 2315 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 2316 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 2317 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : none negated conditional → SURVIVED 2.2 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED 3.3 Location : handleNamedEntityStartingToken Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleNamedEntityStartingToken Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleNamedEntityStartingToken Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleNamedEntityStartingToken Killed by : none changed conditional boundary to IFLT → SURVIVED 7.7 Location : handleNamedEntityStartingToken Killed by : none changed conditional boundary to IFNE → SURVIVED
|
| 2318 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
|
| 2320 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
| 2322 |
|
1.1 Location : handleNamedEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : handleNamedEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2332 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -70 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2333 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 2.2 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2334 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 2335 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2336 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -73 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2337 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary → SURVIVED 7.7 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 8.8 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 10.10 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 12.12 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 13.13 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 14.14 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2338 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2341 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -72 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2345 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -73 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 2346 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED
|
| 2347 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2350 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED
|
| 2351 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2355 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyAndAppendEntityCharacter → KILLED
|
| 2356 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 2357 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleNumericEntityStartingToken Killed by : none changed conditional boundary to IFLT → SURVIVED 7.7 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED
|
| 2358 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
|
| 2360 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
| 2362 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2363 |
|
1.1 Location : handleNumericEntityStartingToken Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : handleNumericEntityStartingToken Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2372 |
|
1.1 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 2373 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2374 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2375 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 2376 |
|
1.1 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 2377 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2380 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED 8.8 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 9.9 Location : decodeHexEntity Killed by : none changed conditional boundary → SURVIVED 10.10 Location : decodeHexEntity Killed by : none changed conditional boundary → SURVIVED 11.11 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 12.12 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 13.13 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 16.16 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED 23.23 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2381 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Changed increment from -48 to 48 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary decrement -48 -> -49 to local variable → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary increment -48 -> -47 to local variable → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 2382 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 70 with 1 → KILLED 8.8 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 9.9 Location : decodeHexEntity Killed by : none changed conditional boundary → SURVIVED 10.10 Location : decodeHexEntity Killed by : none changed conditional boundary → SURVIVED 11.11 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 12.12 Location : decodeHexEntity Killed by : none negated conditional → SURVIVED 13.13 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 16.16 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 19.19 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 21.21 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 23.23 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2383 |
|
1.1 Location : decodeHexEntity Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeHexEntity Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : decodeHexEntity Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : decodeHexEntity Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : decodeHexEntity Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : decodeHexEntity Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : decodeHexEntity Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 8.8 Location : decodeHexEntity Killed by : none Bug fixed: CRCR replace with One, Substituted 65 with 1 → NO_COVERAGE 9.9 Location : decodeHexEntity Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : decodeHexEntity Killed by : none Replaced operate with second operand → NO_COVERAGE 11.11 Location : decodeHexEntity Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : decodeHexEntity Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 2384 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 102 with 1 → KILLED 8.8 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED 9.9 Location : decodeHexEntity Killed by : none changed conditional boundary → SURVIVED 10.10 Location : decodeHexEntity Killed by : none changed conditional boundary → SURVIVED 11.11 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 12.12 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 13.13 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED 23.23 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2385 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 8.8 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED 9.9 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 10.10 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 11.11 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2387 |
|
1.1 Location : decodeHexEntity Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2389 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 7.7 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2390 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED 5.5 Location : decodeHexEntity Killed by : none changed conditional boundary → SURVIVED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 7.7 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 13.13 Location : decodeHexEntity Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2391 |
|
1.1 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → NO_COVERAGE
|
| 2392 |
|
1.1 Location : decodeHexEntity Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
| 2395 |
|
1.1 Location : decodeHexEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 2396 |
|
1.1 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : decodeHexEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2405 |
|
1.1 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 2406 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : decodeDecEntity Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2407 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2408 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED 5.5 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : decodeDecEntity Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2409 |
|
1.1 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 2410 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2412 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 5.5 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2413 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 6.6 Location : decodeDecEntity Killed by : none changed conditional boundary → SURVIVED 7.7 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 8.8 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 9.9 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 10.10 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 11.11 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 12.12 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : decodeDecEntity Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 15.15 Location : decodeDecEntity Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 16.16 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 17.17 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 18.18 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGT → KILLED 19.19 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 20.20 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED
|
| 2414 |
|
1.1 Location : decodeDecEntity Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2416 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 7.7 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2417 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED 5.5 Location : decodeDecEntity Killed by : none changed conditional boundary → SURVIVED 6.6 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 7.7 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : decodeDecEntity Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 13.13 Location : decodeDecEntity Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2418 |
|
1.1 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → NO_COVERAGE
|
| 2419 |
|
1.1 Location : decodeDecEntity Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
| 2422 |
|
1.1 Location : decodeDecEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 2423 |
|
1.1 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : decodeDecEntity Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2437 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeGeneralEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeGeneralEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeGeneralEntity Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2438 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED 5.5 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeGeneralEntity Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2439 |
|
1.1 Location : decodeGeneralEntity Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2443 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional of IF_ACMP → KILLED
|
| 2444 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeGeneralEntity Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeGeneralEntity Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 38 with 1 → KILLED 5.5 Location : decodeGeneralEntity Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : decodeGeneralEntity Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2446 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional of IF_ACMP → KILLED
|
| 2447 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED 5.5 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : decodeGeneralEntity Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2449 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional of IF_ACMP → KILLED
|
| 2450 |
|
1.1 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE 5.5 Location : decodeGeneralEntity Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : decodeGeneralEntity Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2452 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional of IF_ACMP → KILLED
|
| 2453 |
|
1.1 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR replace with One, Substituted 34 with 1 → NO_COVERAGE 5.5 Location : decodeGeneralEntity Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : decodeGeneralEntity Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2455 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional of IF_ACMP → KILLED
|
| 2456 |
|
1.1 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeGeneralEntity Killed by : none Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE 5.5 Location : decodeGeneralEntity Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : decodeGeneralEntity Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2458 |
|
1.1 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : decodeGeneralEntity Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2469 |
|
1.1 Location : handleStartElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleStartElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 2470 |
|
1.1 Location : handleStartElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED
|
| 2471 |
|
1.1 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2472 |
|
1.1 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElementStart Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2474 |
|
1.1 Location : handleStartElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::initStartElement → KILLED
|
| 2475 |
|
1.1 Location : handleStartElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2483 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2484 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2490 |
|
1.1 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2494 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED
|
| 2495 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2497 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::initStartElement → KILLED
|
| 2499 |
|
1.1 Location : handleStartElement Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2500 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2505 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : handleStartElement Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 2506 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleStartElement Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleStartElement Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 2507 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2511 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2512 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2514 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2515 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleStartElement Killed by : none negated conditional → SURVIVED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2516 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 2517 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2518 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2519 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2520 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2522 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 2523 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2525 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 2526 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 8.8 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 9.9 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 10.10 Location : handleStartElement Killed by : none negated conditional → SURVIVED 11.11 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 15.15 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 17.17 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 20.20 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 21.21 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED 22.22 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2527 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
| 2529 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleStartElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleStartElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2530 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2531 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2532 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2535 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2538 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2539 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 3.3 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2540 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2550 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : handleStartElement Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFGT → KILLED 5.5 Location : handleStartElement Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED 7.7 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IFNE → KILLED
|
| 2551 |
|
1.1 Location : handleStartElement Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 2552 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2554 |
|
1.1 Location : handleStartElement Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2555 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2558 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2559 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2561 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 7.7 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2562 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleStartElement Killed by : none negated conditional → SURVIVED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2563 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 2564 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 5.5 Location : handleStartElement Killed by : none negated conditional → SURVIVED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2565 |
|
1.1 Location : handleStartElement Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2566 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 2567 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2569 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 11.11 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 2570 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2572 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 2573 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 9.9 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 10.10 Location : handleStartElement Killed by : none negated conditional → SURVIVED 11.11 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 15.15 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 17.17 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 18.18 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 20.20 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 21.21 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED 22.22 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2574 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
| 2576 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2577 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2579 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2580 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2583 |
|
1.1 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2585 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 2586 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2589 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 2590 |
|
1.1 Location : handleStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleStartElement Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2594 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED
|
| 2595 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2596 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2598 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2599 |
|
1.1 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → SURVIVED
|
| 2604 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 61 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2605 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2607 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2611 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 34 with 1 → KILLED 8.8 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 39 with 1 → KILLED 9.9 Location : handleStartElement Killed by : none negated conditional → SURVIVED 10.10 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 11.11 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 15.15 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 16.16 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 17.17 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 18.18 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 20.20 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 21.21 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 22.22 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2612 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2614 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::initAttribute → KILLED
|
| 2623 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED
|
| 2624 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2626 |
|
1.1 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → SURVIVED
|
| 2627 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 5 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2632 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleStartElement Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 2633 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2635 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2639 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleStartElement Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 2640 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2642 |
|
1.1 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2647 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2648 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleStartElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2649 |
|
1.1 Location : handleStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2651 |
|
1.1 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleStartElement Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2662 |
|
1.1 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED
|
| 2663 |
|
1.1 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → SURVIVED
|
| 2666 |
|
1.1 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → NO_COVERAGE
|
| 2668 |
|
1.1 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2669 |
|
1.1 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED 2.2 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED
|
| 2670 |
|
1.1 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCount mutated with null check on object → SURVIVED
|
| 2671 |
|
1.1 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currNsCount mutated with null check on object → SURVIVED
|
| 2672 |
|
1.1 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
| 2673 |
|
1.1 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : initStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : initStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2678 |
|
1.1 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 2680 |
|
1.1 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → SURVIVED
|
| 2684 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED
|
| 2685 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 9.9 Location : initAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 10.10 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 11.11 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : initAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional of IF_ACMP → KILLED
|
| 2688 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional of IF_ACMP → KILLED
|
| 2689 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2692 |
|
1.1 Location : initAttribute Killed by : none negated conditional → NO_COVERAGE 2.2 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → NO_COVERAGE 3.3 Location : initAttribute Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : initAttribute Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : initAttribute Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : initAttribute Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 7.7 Location : initAttribute Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 2693 |
|
1.1 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → NO_COVERAGE
|
| 2695 |
|
1.1 Location : initAttribute Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : initAttribute Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : initAttribute Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : initAttribute Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : initAttribute Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 2699 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 2.2 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : initAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : initAttribute Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : initAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : initAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 2700 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2702 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
|
| 2703 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : initAttribute Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currNsCount mutated with null check on object → SURVIVED 8.8 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currNsCount mutated with null check on object → SURVIVED
|
| 2705 |
|
1.1 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 5.5 Location : initAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2707 |
|
1.1 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED 2.2 Location : initAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
| 2717 |
|
1.1 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_isEmptyTag mutated with null check on object → SURVIVED
|
| 2720 |
|
1.1 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED 2.2 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
| 2721 |
|
1.1 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : finishStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : finishStartElement Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 2722 |
|
1.1 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
| 2723 |
|
1.1 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE 2.2 Location : finishStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
| 2725 |
|
1.1 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCount mutated with null check on object → SURVIVED
|
| 2726 |
|
1.1 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED 8.8 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
|
| 2732 |
|
1.1 Location : finishStartElement Killed by : none negated conditional → SURVIVED 2.2 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAllNsBound mutated with null check on object → SURVIVED 3.3 Location : finishStartElement Killed by : none changed conditional boundary to IFEQ → SURVIVED 4.4 Location : finishStartElement Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : finishStartElement Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : finishStartElement Killed by : none changed conditional boundary to IFLE → SURVIVED 7.7 Location : finishStartElement Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 2733 |
|
1.1 Location : finishStartElement Killed by : none negated conditional → NO_COVERAGE 2.2 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 3.3 Location : finishStartElement Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 4.4 Location : finishStartElement Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 5.5 Location : finishStartElement Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 6.6 Location : finishStartElement Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 7.7 Location : finishStartElement Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 2734 |
|
1.1 Location : finishStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : finishStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 7.7 Location : finishStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnboundPrefix → NO_COVERAGE
|
| 2736 |
|
1.1 Location : finishStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : finishStartElement Killed by : none changed conditional boundary → NO_COVERAGE 6.6 Location : finishStartElement Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 7.7 Location : finishStartElement Killed by : none negated conditional → NO_COVERAGE 8.8 Location : finishStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCount mutated with null check on object → NO_COVERAGE 10.10 Location : finishStartElement Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 11.11 Location : finishStartElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : finishStartElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : finishStartElement Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 14.14 Location : finishStartElement Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 15.15 Location : finishStartElement Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 16.16 Location : finishStartElement Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 17.17 Location : finishStartElement Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 18.18 Location : finishStartElement Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 2737 |
|
1.1 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
| 2738 |
|
1.1 Location : finishStartElement Killed by : none negated conditional → NO_COVERAGE 2.2 Location : finishStartElement Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : finishStartElement Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : finishStartElement Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : finishStartElement Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : finishStartElement Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 2739 |
|
1.1 Location : finishStartElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishStartElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishStartElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishStartElement Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : finishStartElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : finishStartElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnboundPrefix → NO_COVERAGE
|
| 2744 |
|
1.1 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : finishStartElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 7.7 Location : finishStartElement Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2749 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED 8.8 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_depth mutated with null check on object → SURVIVED
|
| 2750 |
|
1.1 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currElem mutated with null check on object → SURVIVED 2.2 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2756 |
|
1.1 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2757 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 9.9 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 11.11 Location : handleEndElementStart Killed by : none changed conditional boundary → SURVIVED 12.12 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 13.13 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) negated conditional → KILLED 14.14 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 16.16 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 17.17 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 18.18 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 19.19 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 21.21 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2758 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → SURVIVED
|
| 2759 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2760 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED 7.7 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED 8.8 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
|
| 2764 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2766 |
|
1.1 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
| 2769 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Changed increment from -1 to 1 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) UOI Mutator: Added unary decrement -1 -> -2 to local variable → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) UOI Mutator: Added unary increment -1 -> 0 to local variable → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 2770 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary → KILLED 6.6 Location : handleEndElementStart Killed by : none Changed increment from 1 to -1 → SURVIVED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 13.13 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED 14.14 Location : handleEndElementStart Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → SURVIVED 15.15 Location : handleEndElementStart Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → SURVIVED 16.16 Location : handleEndElementStart Killed by : none UOI Mutator: Removed unary increment of local variable → SURVIVED 17.17 Location : handleEndElementStart Killed by : none UOI Mutator: Reversed increment of local variable → SURVIVED
|
| 2771 |
|
1.1 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2772 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 24 with 1 → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleEndElementStart Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 11.11 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 2773 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 11.11 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 12.12 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 13.13 Location : handleEndElementStart Killed by : none Replaced operate with second operand → NO_COVERAGE 14.14 Location : handleEndElementStart Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 15.15 Location : handleEndElementStart Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 16.16 Location : handleEndElementStart Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 17.17 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 18.18 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 2774 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 11.11 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 12.12 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 13.13 Location : handleEndElementStart Killed by : none Replaced operate with second operand → NO_COVERAGE 14.14 Location : handleEndElementStart Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 15.15 Location : handleEndElementStart Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 16.16 Location : handleEndElementStart Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 17.17 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 18.18 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 2775 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 2777 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2779 |
|
1.1 Location : handleEndElementStart Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2780 |
|
1.1 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpectedEndTag → NO_COVERAGE
|
| 2787 |
|
1.1 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2788 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 14.14 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2789 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 3.3 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 4.4 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2790 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 11.11 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 12.12 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 13.13 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 14.14 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 15.15 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 16.16 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise OR with AND → KILLED 17.17 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 21.21 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2791 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 3.3 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 4.4 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2792 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 11.11 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 12.12 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 13.13 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 14.14 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 15.15 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 16.16 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise OR with AND → KILLED 17.17 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 21.21 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2793 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 3.3 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 4.4 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2794 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 11.11 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 12.12 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 13.13 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 14.14 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 15.15 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 16.16 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise OR with AND → KILLED 17.17 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 21.21 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2795 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2796 |
|
1.1 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpectedEndTag → NO_COVERAGE
|
| 2802 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2803 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 5.5 Location : handleEndElementStart Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2804 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 2805 |
|
1.1 Location : handleEndElementStart Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 2806 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 2807 |
|
1.1 Location : handleEndElementStart Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2808 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 2809 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
| 2810 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
| 2811 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2813 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 10.10 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 11.11 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 2814 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2816 |
|
1.1 Location : handleEndElementStart Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 2817 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none negated conditional → NO_COVERAGE 10.10 Location : handleEndElementStart Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 14.14 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 15.15 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 16.16 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 19.19 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 20.20 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 21.21 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 22.22 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2818 |
|
1.1 Location : handleEndElementStart Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
| 2820 |
|
1.1 Location : handleEndElementStart Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2821 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
| 2822 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → NO_COVERAGE
|
| 2823 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2825 |
|
1.1 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElementStart Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEndElementStart Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleEndElementStart Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleEndElementStart Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleEndElementStart Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEndElementStart Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2827 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEndElementStart Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2828 |
|
1.1 Location : handleEndElementStart Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2830 |
|
1.1 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElementStart Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 7.7 Location : handleEndElementStart Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2839 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 3.3 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 5.5 Location : handleEndElement Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 7.7 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 2840 |
|
1.1 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → SURVIVED
|
| 2841 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2842 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary → KILLED 7.7 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) negated conditional → KILLED 8.8 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 10.10 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 11.11 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 12.12 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 13.13 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPLT → KILLED 16.16 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2843 |
|
1.1 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 8.8 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 9.9 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 10.10 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 11.11 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 12.12 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED 15.15 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED 16.16 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED 17.17 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 18.18 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 21.21 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2844 |
|
1.1 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2845 |
|
1.1 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2847 |
|
1.1 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 11.11 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 12.12 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 13.13 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 14.14 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 15.15 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 16.16 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 17.17 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED 21.21 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 22.22 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 23.23 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 24.24 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 2850 |
|
1.1 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED 3.3 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 4.4 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 5.5 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 8.8 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2851 |
|
1.1 Location : handleEndElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpectedEndTag → NO_COVERAGE
|
| 2853 |
|
1.1 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED 7.7 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 2859 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) negated conditional → KILLED 3.3 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2860 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2862 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Replaced Shift Left with Shift Right → KILLED 6.6 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 2863 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Replaced bitwise AND with OR → KILLED 11.11 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Replaced bitwise OR with AND → KILLED 12.12 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 15.15 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 16.16 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2864 |
|
1.1 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 2865 |
|
1.1 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) negated conditional → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPEQ → KILLED 3.3 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGE → KILLED 4.4 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 5.5 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 2868 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 10.10 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary → KILLED 11.11 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) negated conditional → KILLED 12.12 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED 15.15 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED 16.16 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 17.17 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 18.18 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 19.19 Location : handleEndElement Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPLT → KILLED 21.21 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2869 |
|
1.1 Location : handleEndElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpectedEndTag → NO_COVERAGE
|
| 2874 |
|
1.1 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED
|
| 2875 |
|
1.1 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_state mutated with null check on object → SURVIVED 8.8 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2879 |
|
1.1 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) negated conditional → KILLED 2.2 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : handleEndElement Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IFGT → KILLED 5.5 Location : handleEndElement Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IFLT → KILLED 7.7 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IFNE → KILLED
|
| 2880 |
|
1.1 Location : handleEndElement Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 2881 |
|
1.1 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2888 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) negated conditional → KILLED 3.3 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2889 |
|
1.1 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElement Killed by : async.TestElementParsing.testRootElement(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2891 |
|
1.1 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Replaced operate with second operand → KILLED 9.9 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Replaced bitwise AND with OR → KILLED 11.11 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2892 |
|
1.1 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 5.5 Location : handleEndElement Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) negated conditional → KILLED 7.7 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2893 |
|
1.1 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 2894 |
|
1.1 Location : handleEndElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 2895 |
|
1.1 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted 13 with 1 → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 2896 |
|
1.1 Location : handleEndElement Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2897 |
|
1.1 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 2898 |
|
1.1 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted 257 with 1 → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 2900 |
|
1.1 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 10.10 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 11.11 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 2901 |
|
1.1 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 2903 |
|
1.1 Location : handleEndElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 2904 |
|
1.1 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEndElement Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEndElement Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE 8.8 Location : handleEndElement Killed by : none Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE 9.9 Location : handleEndElement Killed by : none negated conditional → NO_COVERAGE 10.10 Location : handleEndElement Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEndElement Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 14.14 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 15.15 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 16.16 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 19.19 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 20.20 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 21.21 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 22.22 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 2905 |
|
1.1 Location : handleEndElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwInvalidSpace → NO_COVERAGE
|
| 2910 |
|
1.1 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) negated conditional → KILLED 6.6 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEndElement Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2911 |
|
1.1 Location : handleEndElement Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 2914 |
|
1.1 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEndElement Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 7.7 Location : handleEndElement Killed by : async.TestAsyncViaEventReader.testSimple_byteBuffer(async.TestAsyncViaEventReader) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2929 |
|
1.1 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2930 |
|
1.1 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
| 2937 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2938 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2939 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2941 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 2942 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2944 |
|
1.1 Location : startCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 2945 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2948 |
|
1.1 Location : startCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 2951 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 2952 |
|
1.1 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2953 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2958 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 7.7 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 8.8 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 12.12 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2959 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2960 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2961 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2963 |
|
1.1 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2964 |
|
1.1 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2969 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 5.5 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 6.6 Location : startCharacters Killed by : none changed conditional boundary → SURVIVED 7.7 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 8.8 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 12.12 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 14.14 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2970 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2971 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2972 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2973 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : startCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 2974 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 2975 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 2978 |
|
1.1 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 2979 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 257 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 2983 |
|
1.1 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : startCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) removed call to com/fasterxml/aalto/util/TextBuilder::resetWithSurrogate → KILLED
|
| 2987 |
|
1.1 Location : startCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 3000 |
|
1.1 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) removed call to com/fasterxml/aalto/util/TextBuilder::resetWithChar → KILLED
|
| 3003 |
|
1.1 Location : startCharacters Killed by : none negated conditional → SURVIVED 2.2 Location : startCharacters Killed by : none negated conditional → SURVIVED 3.3 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgCoalescing mutated with null check on object → SURVIVED 4.4 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED 5.5 Location : startCharacters Killed by : none changed conditional boundary to IFEQ → SURVIVED 6.6 Location : startCharacters Killed by : none changed conditional boundary to IFGE → SURVIVED 7.7 Location : startCharacters Killed by : none changed conditional boundary to IFGE → SURVIVED 8.8 Location : startCharacters Killed by : none changed conditional boundary to IFGT → SURVIVED 9.9 Location : startCharacters Killed by : none changed conditional boundary to IFGT → SURVIVED 10.10 Location : startCharacters Killed by : none changed conditional boundary to IFLE → SURVIVED 11.11 Location : startCharacters Killed by : none changed conditional boundary to IFLE → SURVIVED 12.12 Location : startCharacters Killed by : none changed conditional boundary to IFLT → SURVIVED 13.13 Location : startCharacters Killed by : none changed conditional boundary to IFLT → SURVIVED 14.14 Location : startCharacters Killed by : none changed conditional boundary to IFNE → SURVIVED
|
| 3005 |
|
1.1 Location : startCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3007 |
|
1.1 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED
|
| 3008 |
|
1.1 Location : startCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_cfgLazyParsing mutated with null check on object → SURVIVED 3.3 Location : startCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 4.4 Location : startCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGT → KILLED 5.5 Location : startCharacters Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : startCharacters Killed by : none changed conditional boundary to IFLT → SURVIVED 7.7 Location : startCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFNE → KILLED
|
| 3009 |
|
1.1 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenIncomplete mutated with null check on object → SURVIVED
|
| 3011 |
|
1.1 Location : startCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::finishCharacters → NO_COVERAGE
|
| 3013 |
|
1.1 Location : startCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currToken mutated with null check on object → SURVIVED 2.2 Location : startCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3030 |
|
1.1 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : finishCharacters Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 3035 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
| 3036 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
| 3037 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 3039 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED
|
| 3047 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3048 |
|
1.1 Location : finishCharacters Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : finishCharacters Killed by : none negated conditional → TIMED_OUT 3.3 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → TIMED_OUT 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → TIMED_OUT 6.6 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3051 |
|
1.1 Location : finishCharacters Killed by : none changed conditional boundary → SURVIVED 2.2 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3052 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 3053 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3055 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 3057 |
|
1.1 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 2.2 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED
|
| 3058 |
|
1.1 Location : finishCharacters Killed by : none changed conditional boundary → SURVIVED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3062 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : finishCharacters Killed by : none negated conditional → TIMED_OUT 3.3 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 5.5 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 3063 |
|
1.1 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Changed increment from 1 to -1 → KILLED 6.6 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 7.7 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 9.9 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 10.10 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) UOI Mutator: Removed unary increment of local variable → KILLED 11.11 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3064 |
|
1.1 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 2.2 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : finishCharacters Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 3065 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3068 |
|
1.1 Location : finishCharacters Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : finishCharacters Killed by : async.TestElementParsing.testGetElementText_buffer(async.TestElementParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3070 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3078 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3079 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3082 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3083 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3085 |
|
1.1 Location : finishCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 3087 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3090 |
|
1.1 Location : finishCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 3093 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3094 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3100 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 6.6 Location : finishCharacters Killed by : none changed conditional boundary → SURVIVED 7.7 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 8.8 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 12.12 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 14.14 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3101 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3102 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3103 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3105 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3111 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 5.5 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 6.6 Location : finishCharacters Killed by : none changed conditional boundary → SURVIVED 7.7 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 8.8 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 12.12 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 14.14 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3112 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3113 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3114 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3115 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3116 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : finishCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : finishCharacters Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3117 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3120 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3125 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED 8.8 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 9.9 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Changed increment from 1 to -1 → KILLED 10.10 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Right with Shift Left → KILLED 11.11 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 12.12 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 15.15 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 16.16 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Removed unary increment of local variable → KILLED 17.17 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3126 |
|
1.1 Location : finishCharacters Killed by : none changed conditional boundary → SURVIVED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3127 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 3128 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3130 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 56320 with 1 → KILLED 8.8 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1023 with 1 → KILLED 9.9 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 10.10 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 11.11 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3134 |
|
1.1 Location : finishCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 3136 |
|
1.1 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : finishCharacters Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3140 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : finishCharacters Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED
|
| 3142 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3146 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Replaced Shift Right with Shift Left → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 7.7 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : finishCharacters Killed by : none changed conditional boundary to IFGE → SURVIVED 9.9 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGT → KILLED 10.10 Location : finishCharacters Killed by : none changed conditional boundary to IFLE → SURVIVED 11.11 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED 12.12 Location : finishCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED
|
| 3147 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3148 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 8.8 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 9.9 Location : finishCharacters Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 10.10 Location : finishCharacters Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 11.11 Location : finishCharacters Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 12.12 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : finishCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 15.15 Location : finishCharacters Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 16.16 Location : finishCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 17.17 Location : finishCharacters Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 3150 |
|
1.1 Location : finishCharacters Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none negated conditional → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3151 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 3152 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3154 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : finishCharacters Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : finishCharacters Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3165 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3166 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3167 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3168 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3169 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3172 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3173 |
|
1.1 Location : finishCharacters Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 3175 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 8.8 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 9.9 Location : finishCharacters Killed by : none changed conditional boundary → SURVIVED 10.10 Location : finishCharacters Killed by : none negated conditional → SURVIVED 11.11 Location : finishCharacters Killed by : none negated conditional → SURVIVED 12.12 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 15.15 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 21.21 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 22.22 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 23.23 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 24.24 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3176 |
|
1.1 Location : finishCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportIllegalCDataEnd → NO_COVERAGE
|
| 3180 |
|
1.1 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : finishCharacters Killed by : none Changed increment from -1 to 1 → TIMED_OUT 3.3 Location : finishCharacters Killed by : none negated conditional → MEMORY_ERROR 4.4 Location : finishCharacters Killed by : none changed conditional boundary to IFEQ → SURVIVED 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IFGE → SURVIVED 6.6 Location : finishCharacters Killed by : none changed conditional boundary to IFGT → MEMORY_ERROR 7.7 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED 8.8 Location : finishCharacters Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED 9.9 Location : finishCharacters Killed by : none UOI Mutator: Added unary decrement -1 -> -2 to local variable → SURVIVED 10.10 Location : finishCharacters Killed by : none UOI Mutator: Added unary increment -1 -> 0 to local variable → MEMORY_ERROR 11.11 Location : finishCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → MEMORY_ERROR 12.12 Location : finishCharacters Killed by : none UOI Mutator: Reversed increment of local variable → MEMORY_ERROR
|
| 3181 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : finishCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 8.8 Location : finishCharacters Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 9.9 Location : finishCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 10.10 Location : finishCharacters Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 3183 |
|
1.1 Location : finishCharacters Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none negated conditional → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : finishCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3184 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE
|
| 3185 |
|
1.1 Location : finishCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : finishCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : finishCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : finishCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3196 |
|
1.1 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Changed increment from 1 to -1 → KILLED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 3.3 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 4.4 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3198 |
|
1.1 Location : finishCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : finishCharacters Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) removed call to com/fasterxml/aalto/util/TextBuilder::setCurrentLength → KILLED
|
| 3218 |
|
1.1 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3219 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEntityInCharacters Killed by : none changed conditional boundary → SURVIVED 7.7 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 8.8 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 12.12 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 13.13 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3220 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Removed unary increment of local variable → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3221 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3222 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3223 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3225 |
|
1.1 Location : handleEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3228 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → SURVIVED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3229 |
|
1.1 Location : handleEntityInCharacters Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 3230 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 109 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3231 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3232 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3233 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3234 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3235 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 38 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3237 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3238 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3239 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3240 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 115 with 1 → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3241 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3242 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3243 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3246 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 103 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3247 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 16.16 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 17.17 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 19.19 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3248 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3249 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3250 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3252 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 108 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → SURVIVED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3253 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 116 with 1 → KILLED 8.8 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 9.9 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 10.10 Location : handleEntityInCharacters Killed by : none negated conditional → SURVIVED 11.11 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 18.18 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3254 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → SURVIVED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3255 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3256 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3258 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 113 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → SURVIVED 6.6 Location : handleEntityInCharacters Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3259 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3260 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 117 with 1 → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3261 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3262 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3263 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3264 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3265 |
|
1.1 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE 5.5 Location : handleEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3270 |
|
1.1 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3275 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 6.6 Location : handleDecEntityInCharacters Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 3276 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE
|
| 3277 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3280 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 57 with 1 → NO_COVERAGE 8.8 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE 9.9 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 10.10 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 11.11 Location : handleDecEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 12.12 Location : handleDecEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 13.13 Location : handleDecEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : handleDecEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 15.15 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 16.16 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 17.17 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 18.18 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 19.19 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 20.20 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 21.21 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 22.22 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 23.23 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3281 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 3283 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 8.8 Location : handleDecEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 48 with 1 → NO_COVERAGE 10.10 Location : handleDecEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 11.11 Location : handleDecEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 12.12 Location : handleDecEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleDecEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3284 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 6.6 Location : handleDecEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 7.7 Location : handleDecEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 13.13 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3285 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
| 3287 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 6.6 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3288 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleDecEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3290 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 6.6 Location : handleDecEntityInCharacters Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 3291 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleDecEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : handleDecEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleDecEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleDecEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3292 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3293 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyXmlChar → NO_COVERAGE
|
| 3294 |
|
1.1 Location : handleDecEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3299 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Removed unary increment of local variable → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3300 |
|
1.1 Location : handleHexEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 3301 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3304 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED 8.8 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 9.9 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary → SURVIVED 11.11 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 12.12 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 13.13 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 16.16 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED 23.23 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3305 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) Changed increment from -48 to 48 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary decrement -48 -> -49 to local variable → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary increment -48 -> -47 to local variable → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Removed unary increment of local variable → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3306 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 70 with 1 → KILLED 8.8 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 9.9 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary → SURVIVED 11.11 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 12.12 Location : handleHexEntityInCharacters Killed by : none negated conditional → SURVIVED 13.13 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 16.16 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 19.19 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 21.21 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 23.23 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3307 |
|
1.1 Location : handleHexEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleHexEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleHexEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleHexEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleHexEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleHexEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleHexEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 8.8 Location : handleHexEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 65 with 1 → NO_COVERAGE 9.9 Location : handleHexEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleHexEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 11.11 Location : handleHexEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleHexEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3308 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 102 with 1 → KILLED 8.8 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED 9.9 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary → SURVIVED 11.11 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 12.12 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 13.13 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED 23.23 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3309 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 8.8 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED 9.9 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 10.10 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 11.11 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3311 |
|
1.1 Location : handleHexEntityInCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 3313 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 7.7 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3314 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 7.7 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 13.13 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3315 |
|
1.1 Location : handleHexEntityInCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
| 3317 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3318 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3320 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Removed unary increment of local variable → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3321 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED 5.5 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleHexEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3322 |
|
1.1 Location : handleHexEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3323 |
|
1.1 Location : handleHexEntityInCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyXmlChar → SURVIVED
|
| 3324 |
|
1.1 Location : handleHexEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3337 |
|
1.1 Location : handleAndAppendPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3338 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3340 |
|
1.1 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3341 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3344 |
|
1.1 Location : handleAndAppendPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFNE → KILLED
|
| 3345 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3346 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) negated conditional → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : handleAndAppendPending Killed by : async.TestCDataParsing.testCDataParse(async.TestCDataParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3347 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3349 |
|
1.1 Location : handleAndAppendPending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 3350 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 7.7 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
| 3351 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3358 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 8.8 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
| 3361 |
|
1.1 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
| 3367 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 9.9 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3368 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced Shift Right with Shift Left → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3369 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IFLT → KILLED
|
| 3370 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 3.3 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3371 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3372 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAndAppendPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 3374 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced operate with second operand → KILLED 9.9 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3377 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3379 |
|
1.1 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → SURVIVED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrParse(async.TestPIParsing) removed call to com/fasterxml/aalto/util/TextBuilder::append → KILLED
|
| 3384 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAndAppendPending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3386 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none negated conditional → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 10.10 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 11.11 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 12.12 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 3387 |
|
1.1 Location : handleAndAppendPending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3388 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3389 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3391 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAndAppendPending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3392 |
|
1.1 Location : handleAndAppendPending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3393 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 10.10 Location : handleAndAppendPending Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleAndAppendPending Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 12.12 Location : handleAndAppendPending Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 13.13 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 15.15 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3394 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3396 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAndAppendPending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3399 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 10.10 Location : handleAndAppendPending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3400 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3402 |
|
1.1 Location : handleAndAppendPending Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 3403 |
|
1.1 Location : handleAndAppendPending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3404 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3405 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3407 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAndAppendPending Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAndAppendPending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3408 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3410 |
|
1.1 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAndAppendPending Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : handleAndAppendPending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : handleAndAppendPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3415 |
|
1.1 Location : handleAndAppendPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_textBuilder mutated with null check on object → NO_COVERAGE 2.2 Location : handleAndAppendPending Killed by : none removed call to com/fasterxml/aalto/util/TextBuilder::appendSurrogate → NO_COVERAGE
|
| 3420 |
|
1.1 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAndAppendPending Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3442 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGT → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLT → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFNE → KILLED
|
| 3443 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFEQ → KILLED 3.3 Location : skipCharacters Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : skipCharacters Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLE → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLT → KILLED
|
| 3444 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3448 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
| 3449 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED
|
| 3457 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3458 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 3459 |
|
1.1 Location : skipCharacters Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : skipCharacters Killed by : none negated conditional → TIMED_OUT 3.3 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → TIMED_OUT 4.4 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGE → TIMED_OUT 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3462 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : skipCharacters Killed by : none negated conditional → TIMED_OUT 3.3 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 7.7 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 3463 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Changed increment from 1 to -1 → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : skipCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → TIMED_OUT 9.9 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 10.10 Location : skipCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → TIMED_OUT 11.11 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3464 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGT → KILLED 4.4 Location : skipCharacters Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : skipCharacters Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFNE → KILLED
|
| 3465 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3469 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3477 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3478 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3481 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : skipCharacters Killed by : none negated conditional → SURVIVED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 9.9 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3482 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3484 |
|
1.1 Location : skipCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 3488 |
|
1.1 Location : skipCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 3491 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3492 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3495 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::skipUtf8_2 → KILLED
|
| 3498 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 7.7 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 8.8 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 12.12 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3499 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3500 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3501 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3503 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3509 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 8.8 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 11.11 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 12.12 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 15.15 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3510 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3511 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3512 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3513 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 4.4 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 5.5 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 10.10 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3514 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3515 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3518 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3524 |
|
1.1 Location : skipCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 3526 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3527 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3530 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : skipCharacters Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : skipCharacters Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED
|
| 3531 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -80 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3533 |
|
1.1 Location : skipCharacters Killed by : none changed conditional boundary → SURVIVED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 7.7 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3534 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : skipCharacters Killed by : none changed conditional boundary to IFGE → SURVIVED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : skipCharacters Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED
|
| 3535 |
|
1.1 Location : skipCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3538 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3549 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3550 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3551 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 9.9 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3552 |
|
1.1 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3553 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 93 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3556 |
|
1.1 Location : skipCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : skipCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3557 |
|
1.1 Location : skipCharacters Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 2.2 Location : skipCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 3.3 Location : skipCharacters Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 4.4 Location : skipCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 5.5 Location : skipCharacters Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 3559 |
|
1.1 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 62 with 1 → KILLED 8.8 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 9.9 Location : skipCharacters Killed by : none changed conditional boundary → SURVIVED 10.10 Location : skipCharacters Killed by : none negated conditional → SURVIVED 11.11 Location : skipCharacters Killed by : none negated conditional → SURVIVED 12.12 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipCharacters Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 15.15 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 17.17 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 21.21 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 22.22 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 23.23 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 24.24 Location : skipCharacters Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3560 |
|
1.1 Location : skipCharacters Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportIllegalCDataEnd → NO_COVERAGE
|
| 3571 |
|
1.1 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipCharacters Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3577 |
|
1.1 Location : skipPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3578 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3582 |
|
1.1 Location : skipPending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFEQ → KILLED 5.5 Location : skipPending Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLE → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLT → KILLED 8.8 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED
|
| 3584 |
|
1.1 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3586 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3587 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : skipPending Killed by : none negated conditional → SURVIVED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 10.10 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 11.11 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3588 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3590 |
|
1.1 Location : skipPending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 3591 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3594 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3595 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3596 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -81 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3600 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED
|
| 3601 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -84 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3602 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3605 |
|
1.1 Location : skipPending Killed by : none negated conditional → SURVIVED 2.2 Location : skipPending Killed by : none changed conditional boundary to IFEQ → SURVIVED 3.3 Location : skipPending Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : skipPending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : skipPending Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : skipPending Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 3606 |
|
1.1 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
| 3607 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
| 3610 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3611 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3613 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 3614 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3615 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3616 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : skipPending Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED
|
| 3617 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3618 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3620 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted -83 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3621 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3623 |
|
1.1 Location : skipPending Killed by : none negated conditional → NO_COVERAGE 2.2 Location : skipPending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 3.3 Location : skipPending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 4.4 Location : skipPending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 5.5 Location : skipPending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 6.6 Location : skipPending Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 3624 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3625 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3627 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted -82 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3628 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3631 |
|
1.1 Location : skipPending Killed by : none negated conditional → NO_COVERAGE 2.2 Location : skipPending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 3.3 Location : skipPending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 4.4 Location : skipPending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 5.5 Location : skipPending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 6.6 Location : skipPending Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 3632 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3633 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3635 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3638 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : skipPending Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : skipPending Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IFNE → KILLED
|
| 3639 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3640 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3642 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 3647 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED
|
| 3648 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 3651 |
|
1.1 Location : skipPending Killed by : none negated conditional → SURVIVED 2.2 Location : skipPending Killed by : none changed conditional boundary to IFEQ → SURVIVED 3.3 Location : skipPending Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : skipPending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : skipPending Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : skipPending Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 3652 |
|
1.1 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
| 3653 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 9 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nextEvent mutated with null check on object → NO_COVERAGE
|
| 3656 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3657 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3660 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 13.13 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3661 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3662 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3664 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3665 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted -86 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3671 |
|
1.1 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 2.2 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3672 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 93 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3673 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3676 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3677 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3678 |
|
1.1 Location : skipPending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInputProblem → NO_COVERAGE
|
| 3682 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3683 |
|
1.1 Location : skipPending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipPending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipPending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipPending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipPending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3688 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3689 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3696 |
|
1.1 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3697 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
| 3700 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::skipUtf8_2 → KILLED
|
| 3706 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3707 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced Shift Right with Shift Left → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3708 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : skipPending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IFLT → KILLED
|
| 3709 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3710 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3711 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 3713 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3716 |
|
1.1 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : skipPending Killed by : none Replaced bitwise AND with OR → SURVIVED 6.6 Location : skipPending Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3722 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3724 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Right with Shift Left → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFEQ → KILLED 9.9 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 10.10 Location : skipPending Killed by : none changed conditional boundary to IFGT → SURVIVED 11.11 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLE → KILLED 12.12 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLT → KILLED
|
| 3725 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3726 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3727 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 3729 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3730 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3731 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 9.9 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 10.10 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 11.11 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 12.12 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 13.13 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3732 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 3734 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3737 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 9.9 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Right with Shift Left → KILLED 10.10 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3738 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Right with Shift Left → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3740 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFEQ → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFGE → KILLED 4.4 Location : skipPending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLE → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IFLT → KILLED
|
| 3741 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 3.3 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : skipPending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3742 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3743 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 3745 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 9.9 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3746 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : skipPending Killed by : none Replaced bitwise AND with OR → SURVIVED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3748 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : skipPending Killed by : none Replaced bitwise AND with OR → SURVIVED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3756 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3757 |
|
1.1 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipPending Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3774 |
|
1.1 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3775 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 7.7 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 8.8 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 9.9 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 10.10 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 11.11 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 12.12 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 13.13 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 3776 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Changed increment from 1 to -1 → KILLED 2.2 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary decrement 1 -> 0 to local variable → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Added unary increment 1 -> 2 to local variable → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Removed unary increment of local variable → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) UOI Mutator: Reversed increment of local variable → KILLED
|
| 3777 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3778 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3779 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3781 |
|
1.1 Location : skipEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3784 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 97 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3785 |
|
1.1 Location : skipEntityInCharacters Killed by : none Changed increment from 1 to -1 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none UOI Mutator: Added unary decrement 1 -> 0 to local variable → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none UOI Mutator: Added unary increment 1 -> 2 to local variable → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 3786 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 109 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3787 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3788 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3789 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3790 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3791 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 38 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3793 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 112 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3794 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3795 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3796 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 115 with 1 → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3797 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3798 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3799 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3802 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 103 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : none negated conditional → SURVIVED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3803 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 16.16 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 17.17 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 19.19 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3804 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3805 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3806 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 62 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3808 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 108 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3809 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 116 with 1 → KILLED 8.8 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 9.9 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 10.10 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 11.11 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 15.15 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 16.16 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 17.17 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 18.18 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 19.19 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3810 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3811 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3812 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 60 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithEntities(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3814 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 113 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3815 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3816 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 117 with 1 → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3817 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 111 with 1 → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3818 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 116 with 1 → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 15.15 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 16.16 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 17.17 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 18.18 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3819 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 59 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none negated conditional → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : skipEntityInCharacters Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 3820 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 4 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipEntityInCharacters Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3821 |
|
1.1 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipEntityInCharacters Killed by : none Bug fixed: CRCR replace with One, Substituted 39 with 1 → NO_COVERAGE 5.5 Location : skipEntityInCharacters Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3826 |
|
1.1 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : skipEntityInCharacters Killed by : async.TestCharactersParsing.testSkipTextWithNumericEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : skipEntityInCharacters Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → SURVIVED
|
| 3838 |
|
1.1 Location : skipCoalescedText Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipCoalescedText Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipCoalescedText Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipCoalescedText Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : skipCoalescedText Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : skipCoalescedText Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3856 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 3857 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 3858 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3860 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3863 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED
|
| 3864 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldATTR_CHARS mutated with null check on object → SURVIVED
|
| 3865 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 3873 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3874 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3876 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAttrValue Killed by : none negated conditional → SURVIVED 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 6.6 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 7.7 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3877 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
| 3879 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 3881 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
| 3882 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 7.7 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3886 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleAttrValue Killed by : none negated conditional → TIMED_OUT 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 8.8 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 3887 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 3888 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 3891 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED 8.8 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
| 3899 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3900 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3901 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3903 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 11.11 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3904 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3908 |
|
1.1 Location : handleAttrValue Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → SURVIVED
|
| 3912 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 3915 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 3916 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 3917 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3922 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3923 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3924 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3925 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3927 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3928 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3933 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3934 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3935 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3936 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3937 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3938 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 3939 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3942 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 3943 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 3947 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 13.13 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 14.14 Location : handleAttrValue Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 15.15 Location : handleAttrValue Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 16.16 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 17.17 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 18.18 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE 20.20 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
|
| 3948 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3949 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3950 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
| 3954 |
|
1.1 Location : handleAttrValue Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 3956 |
|
1.1 Location : handleAttrValue Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 3959 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 3960 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValue Killed by : none changed conditional boundary to IFEQ → SURVIVED 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 3961 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3963 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
| 3966 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Replaced Shift Right with Shift Left → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 7.7 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleAttrValue Killed by : none changed conditional boundary to IFGE → SURVIVED 9.9 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 10.10 Location : handleAttrValue Killed by : none changed conditional boundary to IFLE → SURVIVED 11.11 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 12.12 Location : handleAttrValue Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 3967 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3968 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none Replaced operate with second operand → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 13.13 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 14.14 Location : handleAttrValue Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 15.15 Location : handleAttrValue Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 16.16 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 17.17 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 18.18 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE 20.20 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
|
| 3969 |
|
1.1 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : handleAttrValue Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : handleAttrValue Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 3970 |
|
1.1 Location : handleAttrValue Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValue Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 6.6 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 3971 |
|
1.1 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
| 3976 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 4.4 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : handleAttrValue Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 3984 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED 8.8 Location : handleAttrValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
| 3987 |
|
1.1 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 3996 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 3997 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 3998 |
|
1.1 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4000 |
|
1.1 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED
|
| 4001 |
|
1.1 Location : handleAttrValuePending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAttrValuePending Killed by : none negated conditional → SURVIVED 3.3 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 6.6 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 7.7 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4002 |
|
1.1 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
| 4005 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 32 with 1 → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED 13.13 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
| 4006 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4009 |
|
1.1 Location : handleAttrValuePending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4010 |
|
1.1 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4014 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -60 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4015 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4016 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4017 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -61 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4018 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4019 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4021 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 4022 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -62 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4023 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4024 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4025 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4027 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4029 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4033 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED
|
| 4034 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -63 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4035 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4038 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 4039 |
|
1.1 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
| 4040 |
|
1.1 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE 7.7 Location : handleAttrValuePending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
| 4043 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -61 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4044 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 4045 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -62 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4046 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4047 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4048 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4050 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4052 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4054 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -62 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4055 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4056 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -63 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4058 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED
|
| 4059 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4062 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 4063 |
|
1.1 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
| 4064 |
|
1.1 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE 7.7 Location : handleAttrValuePending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
| 4066 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -64 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4067 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4068 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -65 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4069 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4075 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 4076 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4079 |
|
1.1 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → SURVIVED
|
| 4081 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 16 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithUTF8Attrs(async.TestElementParsing) Replaced Shift Right with Shift Left → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 7.7 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFGE → SURVIVED 9.9 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 10.10 Location : handleAttrValuePending Killed by : none changed conditional boundary to IFLE → SURVIVED 11.11 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 12.12 Location : handleAttrValuePending Killed by : async.TestElementParsing.testParseElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 4082 |
|
1.1 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4083 |
|
1.1 Location : handleAttrValuePending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValuePending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 5.5 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 6.6 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4084 |
|
1.1 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
| 4086 |
|
1.1 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 11.11 Location : handleAttrValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 12.12 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 13.13 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 14.14 Location : handleAttrValuePending Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 15.15 Location : handleAttrValuePending Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 16.16 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 17.17 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 18.18 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE 20.20 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → NO_COVERAGE
|
| 4087 |
|
1.1 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : handleAttrValuePending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : handleAttrValuePending Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4089 |
|
1.1 Location : handleAttrValuePending Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleAttrValuePending Killed by : none negated conditional → SURVIVED 3.3 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED 4.4 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 6.6 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 7.7 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : handleAttrValuePending Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4090 |
|
1.1 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_attrCollector mutated with null check on object → NO_COVERAGE
|
| 4092 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrPtr mutated with null check on object → SURVIVED
|
| 4093 |
|
1.1 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePending Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4099 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4100 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4103 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 8.8 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldTEXT_CHARS mutated with null check on object → SURVIVED
|
| 4106 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4110 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4111 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4112 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 4113 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4114 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4115 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4117 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4120 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4122 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4126 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4128 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none negated conditional → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 4129 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4130 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4131 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4133 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4134 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4135 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 13.13 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 15.15 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4136 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4138 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4141 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4142 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4144 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 4145 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4146 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4147 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4149 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleAttrValuePendingUTF8 Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleAttrValuePendingUTF8 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4150 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4152 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4155 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4159 |
|
1.1 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleAttrValuePendingUTF8 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleAttrValuePendingUTF8 Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4165 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4166 |
|
1.1 Location : handleDecEntityInAttribute Killed by : none negated conditional → SURVIVED 2.2 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IFGE → SURVIVED 3.3 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IFGT → SURVIVED 4.4 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IFNE → SURVIVED
|
| 4168 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 8.8 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED 9.9 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 11.11 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 12.12 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 13.13 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 17.17 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 18.18 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 22.22 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 23.23 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 24.24 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED 25.25 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4169 |
|
1.1 Location : handleDecEntityInAttribute Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 4171 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -64 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4172 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 4173 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4174 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4176 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4178 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 8.8 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4179 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4180 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 9 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 7.7 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 8.8 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 9.9 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 10.10 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 11.11 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 12.12 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 14.14 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 15.15 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 16.16 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IFEQ → SURVIVED 17.17 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 18.18 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 19.19 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IFLE → SURVIVED 20.20 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 4181 |
|
1.1 Location : handleDecEntityInAttribute Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 4183 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 4184 |
|
1.1 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 4185 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 13.13 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4186 |
|
1.1 Location : handleDecEntityInAttribute Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
| 4188 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleDecEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4189 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4191 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4193 |
|
1.1 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED 2.2 Location : handleDecEntityInAttribute Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyXmlChar → SURVIVED
|
| 4194 |
|
1.1 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4195 |
|
1.1 Location : handleDecEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED 2.2 Location : handleDecEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4201 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4202 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 4204 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED 9.9 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 11.11 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 12.12 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 13.13 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 17.17 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 18.18 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 22.22 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 23.23 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 24.24 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED 25.25 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4205 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 4207 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -65 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4208 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 4209 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4210 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4212 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4214 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 59 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 11.11 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4216 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 57 with 1 → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 48 with 1 → KILLED 9.9 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 11.11 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 12.12 Location : handleHexEntityInAttribute Killed by : none negated conditional → SURVIVED 13.13 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 16.16 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 19.19 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 20.20 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 21.21 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 23.23 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4217 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none Changed increment from -48 to 48 → NO_COVERAGE 2.2 Location : handleHexEntityInAttribute Killed by : none UOI Mutator: Added unary decrement -48 -> -49 to local variable → NO_COVERAGE 3.3 Location : handleHexEntityInAttribute Killed by : none UOI Mutator: Added unary increment -48 -> -47 to local variable → NO_COVERAGE 4.4 Location : handleHexEntityInAttribute Killed by : none UOI Mutator: Removed unary increment of local variable → NO_COVERAGE 5.5 Location : handleHexEntityInAttribute Killed by : none UOI Mutator: Reversed increment of local variable → NO_COVERAGE
|
| 4218 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 70 with 1 → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 9.9 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 10.10 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 11.11 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 12.12 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 13.13 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 14.14 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 15.15 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 16.16 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 17.17 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 18.18 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 19.19 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 20.20 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 21.21 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 22.22 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED 23.23 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4219 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 9.9 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 10.10 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 11.11 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4220 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR replace with One, Substituted 102 with 1 → NO_COVERAGE 8.8 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR replace with One, Substituted 97 with 1 → NO_COVERAGE 9.9 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → NO_COVERAGE 10.10 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → NO_COVERAGE 11.11 Location : handleHexEntityInAttribute Killed by : none negated conditional → NO_COVERAGE 12.12 Location : handleHexEntityInAttribute Killed by : none negated conditional → NO_COVERAGE 13.13 Location : handleHexEntityInAttribute Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 14.14 Location : handleHexEntityInAttribute Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 15.15 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 16.16 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 17.17 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 18.18 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 19.19 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 20.20 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 21.21 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 22.22 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 23.23 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4221 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 8.8 Location : handleHexEntityInAttribute Killed by : none Bug fixed: CRCR replace with One, Substituted 97 with 1 → NO_COVERAGE 9.9 Location : handleHexEntityInAttribute Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : handleHexEntityInAttribute Killed by : none Replaced operate with second operand → NO_COVERAGE 11.11 Location : handleHexEntityInAttribute Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleHexEntityInAttribute Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4223 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 4225 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 4 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 4226 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED
|
| 4227 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1114111 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary → SURVIVED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 13.13 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4228 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportEntityOverflow → NO_COVERAGE
|
| 4230 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleHexEntityInAttribute Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4231 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testParseElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4233 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4235 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED 2.2 Location : handleHexEntityInAttribute Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::verifyXmlChar → SURVIVED
|
| 4236 |
|
1.1 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4237 |
|
1.1 Location : handleHexEntityInAttribute Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_entityValue mutated with null check on object → SURVIVED 2.2 Location : handleHexEntityInAttribute Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4248 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4249 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -60 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4250 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4252 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4253 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 35 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 8.8 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 9.9 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4254 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -61 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4255 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4256 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4259 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 120 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 11.11 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 13.13 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 4260 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -62 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4261 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4262 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4263 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4265 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4267 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4269 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 4270 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithAttrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4272 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4275 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED
|
| 4276 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -63 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4277 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4280 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleEntityInAttributeValue Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 4281 |
|
1.1 Location : handleEntityInAttributeValue Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4283 |
|
1.1 Location : handleEntityInAttributeValue Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
| 4284 |
|
1.1 Location : handleEntityInAttributeValue Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleEntityInAttributeValue Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleEntityInAttributeValue Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleEntityInAttributeValue Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleEntityInAttributeValue Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleEntityInAttributeValue Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4290 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_charTypes mutated with null check on object → SURVIVED 2.2 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/util/XmlCharTypes and fieldATTR_CHARS mutated with null check on object → SURVIVED
|
| 4291 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → SURVIVED
|
| 4292 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrQuote mutated with null check on object → SURVIVED
|
| 4295 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 3.3 Location : handleNsDecl Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IFLE → SURVIVED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLT → KILLED 7.7 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 4296 |
|
1.1 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 4297 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4299 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4308 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → TIMED_OUT 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4309 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4311 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED 4.4 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 5.5 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4312 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
| 4314 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED
|
| 4316 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced operate with second operand → KILLED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced operate with second operand → KILLED 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
|
| 4317 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4321 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary → KILLED 2.2 Location : handleNsDecl Killed by : none negated conditional → TIMED_OUT 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 5.5 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPLT → TIMED_OUT 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → TIMED_OUT
|
| 4322 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4323 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFGE → KILLED 3.3 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFGT → KILLED 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IFLE → SURVIVED 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IFLT → SURVIVED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFNE → KILLED
|
| 4326 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED 8.8 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
|
| 4334 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4335 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4336 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4338 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4339 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4343 |
|
1.1 Location : handleNsDecl Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::markLF → NO_COVERAGE
|
| 4347 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4350 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4351 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4352 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4357 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4358 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4359 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4360 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4362 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4363 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4368 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 3 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 14.14 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 15.15 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4369 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4370 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4371 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 8 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4372 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4373 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 14.14 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 15.15 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4374 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Replaced Shift Left with Shift Right → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4377 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4378 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4382 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 13.13 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 14.14 Location : handleNsDecl Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 15.15 Location : handleNsDecl Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 16.16 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 17.17 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 18.18 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 20.20 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
| 4383 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4384 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4385 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
| 4389 |
|
1.1 Location : handleNsDecl Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidInitial → NO_COVERAGE
|
| 4391 |
|
1.1 Location : handleNsDecl Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 4394 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 4395 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 4396 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4398 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
| 4401 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 4402 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4403 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 13.13 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 14.14 Location : handleNsDecl Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 15.15 Location : handleNsDecl Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 16.16 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 17.17 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 18.18 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 20.20 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
| 4404 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : handleNsDecl Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : handleNsDecl Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4405 |
|
1.1 Location : handleNsDecl Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4406 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
| 4411 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 3.3 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : handleNsDecl Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 4419 |
|
1.1 Location : handleNsDecl Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsDecl Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsDecl Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleNsDecl Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
| 4426 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → SURVIVED
|
| 4427 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFEQ → KILLED 3.3 Location : handleNsDecl Killed by : none changed conditional boundary to IFGE → SURVIVED 4.4 Location : handleNsDecl Killed by : none changed conditional boundary to IFGT → SURVIVED 5.5 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLE → KILLED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IFLT → KILLED
|
| 4428 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE 2.2 Location : handleNsDecl Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::bindNs → NO_COVERAGE
|
| 4430 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_config mutated with null check on object → SURVIVED
|
| 4431 |
|
1.1 Location : handleNsDecl Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → SURVIVED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::bindNs → KILLED
|
| 4433 |
|
1.1 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handleNsDecl Killed by : async.TestElementParsing.testElements(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4442 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4443 |
|
1.1 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 4444 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4446 |
|
1.1 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
| 4447 |
|
1.1 Location : handleNsValuePending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4448 |
|
1.1 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
| 4451 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 32 with 1 → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 13.13 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
| 4452 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4456 |
|
1.1 Location : handleNsValuePending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4457 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4462 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -60 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4463 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4464 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 35 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4465 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -61 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4466 |
|
1.1 Location : handleNsValuePending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4467 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4469 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 120 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4470 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -62 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4471 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4472 |
|
1.1 Location : handleNsValuePending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4473 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4475 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4477 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4481 |
|
1.1 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE
|
| 4482 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -63 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4483 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4486 |
|
1.1 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 4487 |
|
1.1 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
| 4488 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
| 4491 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -61 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4492 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 120 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 13.13 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4493 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -62 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE
|
| 4494 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4495 |
|
1.1 Location : handleNsValuePending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4496 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4498 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4500 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4502 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -62 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4503 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4504 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -63 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4506 |
|
1.1 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE
|
| 4507 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4510 |
|
1.1 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 4511 |
|
1.1 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_tokenName mutated with null check on object → NO_COVERAGE
|
| 4512 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemAttrName mutated with null check on object → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportUnexpandedEntityInAttr → NO_COVERAGE
|
| 4514 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -64 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4515 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4516 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted -65 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE
|
| 4517 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4522 |
|
1.1 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none changed conditional boundary to IFEQ → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE
|
| 4523 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4526 |
|
1.1 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
| 4528 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 16 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGE → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none changed conditional boundary to IFGT → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLE → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none changed conditional boundary to IFLT → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none changed conditional boundary to IFNE → NO_COVERAGE
|
| 4529 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 65536 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4530 |
|
1.1 Location : handleNsValuePending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4531 |
|
1.1 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
| 4533 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 13.13 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 10 with 1 → NO_COVERAGE 14.14 Location : handleNsValuePending Killed by : none Replaced Shift Right with Shift Left → NO_COVERAGE 15.15 Location : handleNsValuePending Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 16.16 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 17.17 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 18.18 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 20.20 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
| 4534 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 56320 with 1 → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1023 with 1 → NO_COVERAGE 9.9 Location : handleNsValuePending Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 10.10 Location : handleNsValuePending Killed by : none Replaced bitwise OR with AND → NO_COVERAGE 11.11 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE
|
| 4536 |
|
1.1 Location : handleNsValuePending Killed by : none changed conditional boundary → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none negated conditional → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4537 |
|
1.1 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_nameBuffer mutated with null check on object → NO_COVERAGE
|
| 4539 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handleNsValuePending Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_elemNsPtr mutated with null check on object → NO_COVERAGE
|
| 4540 |
|
1.1 Location : handleNsValuePending Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handleNsValuePending Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handleNsValuePending Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handleNsValuePending Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handleNsValuePending Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4551 |
|
1.1 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4557 |
|
1.1 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parseNewName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 7.7 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parseNewName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parseNewName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parseNewName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4558 |
|
1.1 Location : parseNewName Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 4560 |
|
1.1 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseNewName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
|
| 4561 |
|
1.1 Location : parseNewName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4562 |
|
1.1 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseNewName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4563 |
|
1.1 Location : parseNewName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseNewName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4580 |
|
1.1 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4585 |
|
1.1 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4587 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4588 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4590 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4597 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4599 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED 12.12 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 13.13 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 14.14 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 15.15 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 16.16 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 17.17 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 18.18 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 21.21 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 22.22 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 23.23 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 24.24 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 25.25 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 26.26 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGE → KILLED 27.27 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 28.28 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 29.29 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPGT → KILLED 30.30 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 31.31 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 32.32 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 33.33 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 34.34 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4601 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4607 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4608 |
|
1.1 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4609 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4610 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4612 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4613 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4614 |
|
1.1 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 11.11 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED 12.12 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 13.13 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 14.14 Location : parsePName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary → KILLED 15.15 Location : parsePName Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) negated conditional → KILLED 16.16 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 17.17 Location : parsePName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) negated conditional → KILLED 18.18 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 21.21 Location : parsePName Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPEQ → KILLED 22.22 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPEQ → KILLED 23.23 Location : parsePName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 24.24 Location : parsePName Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGE → KILLED 25.25 Location : parsePName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 26.26 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : parsePName Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 28.28 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 29.29 Location : parsePName Killed by : async.TestPIParsing.testProcInstrSkip(async.TestPIParsing) changed conditional boundary to IF_ICMPGT → KILLED 30.30 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 31.31 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 32.32 Location : parsePName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 33.33 Location : parsePName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED 34.34 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4615 |
|
1.1 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4618 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4622 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4623 |
|
1.1 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4624 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4625 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4627 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4628 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4629 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 11.11 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED 12.12 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 13.13 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 14.14 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 15.15 Location : parsePName Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) negated conditional → KILLED 16.16 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 17.17 Location : parsePName Killed by : none negated conditional → SURVIVED 18.18 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 21.21 Location : parsePName Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 22.22 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 23.23 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 24.24 Location : parsePName Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 25.25 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 26.26 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : parsePName Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 28.28 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 29.29 Location : parsePName Killed by : async.TestDoctypeParsing.testWithSystemId(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 30.30 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 31.31 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 32.32 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 33.33 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 34.34 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4630 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : none mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → TIMED_OUT
|
| 4633 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4637 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) changed conditional boundary → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 3.3 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4638 |
|
1.1 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4639 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4640 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testNoDeclaration(async.TestXmlDeclaration) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4642 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced operate with second operand → KILLED 9.9 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4643 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) negated conditional → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4644 |
|
1.1 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 11.11 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED 12.12 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 13.13 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 14.14 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 15.15 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) negated conditional → KILLED 16.16 Location : parsePName Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) negated conditional → KILLED 17.17 Location : parsePName Killed by : none negated conditional → SURVIVED 18.18 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 21.21 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPEQ → KILLED 22.22 Location : parsePName Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPEQ → KILLED 23.23 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 24.24 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGE → KILLED 25.25 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 26.26 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 28.28 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 29.29 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) changed conditional boundary to IF_ICMPGT → KILLED 30.30 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 31.31 Location : parsePName Killed by : async.TestXmlDeclaration.testVersionOnlyDeclaration(async.TestXmlDeclaration) changed conditional boundary to IF_ICMPLT → KILLED 32.32 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 33.33 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 34.34 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4645 |
|
1.1 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : async.TestDoctypeParsing.testSimplest(async.TestDoctypeParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parsePName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4648 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4654 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) negated conditional → KILLED 2.2 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 3.3 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFEQ → KILLED 4.4 Location : parsePName Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : parsePName Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFLE → KILLED 7.7 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) changed conditional boundary to IFLT → KILLED
|
| 4655 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
|
| 4656 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
|
| 4658 |
|
1.1 Location : parsePName Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parsePName Killed by : none negated conditional → SURVIVED 3.3 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 4.4 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED 5.5 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : parsePName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4659 |
|
1.1 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE 2.2 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE 3.3 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE
|
| 4661 |
|
1.1 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Replaced operate with second operand → KILLED 6.6 Location : parsePName Killed by : async.TestXmlDeclaration.testStandAloneDeclaration2(async.TestXmlDeclaration) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED 8.8 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 9.9 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
|
| 4663 |
|
1.1 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parsePName Killed by : async.TestElementParsing.testTrivial_buffer(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parsePName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4669 |
|
1.1 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 5.5 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4670 |
|
1.1 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parseNewEntityName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 7.7 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parseNewEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parseNewEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parseNewEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4671 |
|
1.1 Location : parseNewEntityName Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::throwUnexpectedChar → NO_COVERAGE
|
| 4673 |
|
1.1 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseNewEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
|
| 4674 |
|
1.1 Location : parseNewEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4675 |
|
1.1 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseNewEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4676 |
|
1.1 Location : parseNewEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseNewEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4681 |
|
1.1 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4686 |
|
1.1 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4688 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 3.3 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4689 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4691 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced operate with second operand → KILLED 9.9 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4698 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4700 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 11.11 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED 12.12 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 13.13 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 14.14 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 15.15 Location : parseEntityName Killed by : none negated conditional → SURVIVED 16.16 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 17.17 Location : parseEntityName Killed by : none negated conditional → SURVIVED 18.18 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 21.21 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 22.22 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 23.23 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 24.24 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 25.25 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 26.26 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 28.28 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 29.29 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 30.30 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 31.31 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED 32.32 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 33.33 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 34.34 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4702 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseEntityName Killed by : none negated conditional → SURVIVED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 8.8 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 4703 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
|
| 4704 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 3.3 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 4.4 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4705 |
|
1.1 Location : parseEntityName Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseEntityName Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : parseEntityName Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : parseEntityName Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4706 |
|
1.1 Location : parseEntityName Killed by : none mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 4708 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGE → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGT → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGT → KILLED 6.6 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 4709 |
|
1.1 Location : parseEntityName Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseEntityName Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : parseEntityName Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : parseEntityName Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4710 |
|
1.1 Location : parseEntityName Killed by : none mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 4714 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4720 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4721 |
|
1.1 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4722 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4723 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4725 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4726 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 7.7 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4727 |
|
1.1 Location : parseEntityName Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseEntityName Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : parseEntityName Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : parseEntityName Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : parseEntityName Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : parseEntityName Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with One, Substituted 45 with 1 → NO_COVERAGE 11.11 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with One, Substituted 58 with 1 → NO_COVERAGE 12.12 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with One, Substituted 47 with 1 → NO_COVERAGE 13.13 Location : parseEntityName Killed by : none changed conditional boundary → NO_COVERAGE 14.14 Location : parseEntityName Killed by : none changed conditional boundary → NO_COVERAGE 15.15 Location : parseEntityName Killed by : none negated conditional → NO_COVERAGE 16.16 Location : parseEntityName Killed by : none negated conditional → NO_COVERAGE 17.17 Location : parseEntityName Killed by : none negated conditional → NO_COVERAGE 18.18 Location : parseEntityName Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 19.19 Location : parseEntityName Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 20.20 Location : parseEntityName Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 21.21 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 22.22 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 23.23 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 24.24 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 25.25 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 26.26 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 27.27 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 28.28 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 29.29 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 30.30 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 31.31 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 32.32 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 33.33 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 34.34 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4728 |
|
1.1 Location : parseEntityName Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseEntityName Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : parseEntityName Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : parseEntityName Killed by : none mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 4731 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4735 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 3.3 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4736 |
|
1.1 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4737 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4738 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4740 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 9.9 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4741 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 7.7 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4742 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 11.11 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED 12.12 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 13.13 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 14.14 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 15.15 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 16.16 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 17.17 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 18.18 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 21.21 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 22.22 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 23.23 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 24.24 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGE → KILLED 25.25 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 26.26 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGT → KILLED 28.28 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 29.29 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGT → KILLED 30.30 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 31.31 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 32.32 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED 33.33 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPNE → KILLED 34.34 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4744 |
|
1.1 Location : parseEntityName Killed by : none negated conditional → SURVIVED 2.2 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 3.3 Location : parseEntityName Killed by : none changed conditional boundary to IFEQ → SURVIVED 4.4 Location : parseEntityName Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : parseEntityName Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : parseEntityName Killed by : none changed conditional boundary to IFLE → SURVIVED 7.7 Location : parseEntityName Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 4745 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) negated conditional → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 3.3 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 4.4 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4746 |
|
1.1 Location : parseEntityName Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : parseEntityName Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : parseEntityName Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : parseEntityName Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : parseEntityName Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4747 |
|
1.1 Location : parseEntityName Killed by : none mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
|
| 4749 |
|
1.1 Location : parseEntityName Killed by : none negated conditional → SURVIVED 2.2 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 3.3 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 4.4 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 4750 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4751 |
|
1.1 Location : parseEntityName Killed by : async.TestCharactersParsing.testTextWithEntities(async.TestCharactersParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4754 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 2 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4757 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4761 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 3.3 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4762 |
|
1.1 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuad mutated with null check on object → SURVIVED
|
| 4763 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4764 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4766 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced operate with second operand → KILLED 9.9 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 255 with 1 → KILLED 10.10 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 14.14 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 15.15 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4767 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 65 with 1 → KILLED 5.5 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 10.10 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4768 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 45 with 1 → KILLED 11.11 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 58 with 1 → KILLED 12.12 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 47 with 1 → KILLED 13.13 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 14.14 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 15.15 Location : parseEntityName Killed by : none negated conditional → SURVIVED 16.16 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 17.17 Location : parseEntityName Killed by : none negated conditional → SURVIVED 18.18 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 21.21 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 22.22 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPEQ → KILLED 23.23 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 24.24 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 25.25 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 26.26 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 27.27 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 28.28 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 29.29 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 30.30 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 31.31 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IF_ICMPLT → KILLED 32.32 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED 33.33 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED 34.34 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4770 |
|
1.1 Location : parseEntityName Killed by : none negated conditional → SURVIVED 2.2 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 3.3 Location : parseEntityName Killed by : none changed conditional boundary to IFEQ → SURVIVED 4.4 Location : parseEntityName Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : parseEntityName Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : parseEntityName Killed by : none changed conditional boundary to IFLE → SURVIVED 7.7 Location : parseEntityName Killed by : none changed conditional boundary to IFLT → SURVIVED
|
| 4771 |
|
1.1 Location : parseEntityName Killed by : none negated conditional → SURVIVED 2.2 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 3.3 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 4.4 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 5.5 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 6.6 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPLT → SURVIVED
|
| 4772 |
|
1.1 Location : parseEntityName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : parseEntityName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 8.8 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4773 |
|
1.1 Location : parseEntityName Killed by : async.TestElementParsing.testElements(async.TestElementParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4776 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 3 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) mutated return of Object value for com/fasterxml/aalto/async/AsyncByteBufferScanner::parseEntityName to ( if (x != null) null else throw new RuntimeException ) → KILLED
|
| 4779 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 8 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced Shift Left with Shift Right → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced bitwise OR with AND → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4785 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) negated conditional → KILLED 2.2 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IFEQ → KILLED 4.4 Location : parseEntityName Killed by : none changed conditional boundary to IFGE → SURVIVED 5.5 Location : parseEntityName Killed by : none changed conditional boundary to IFGT → SURVIVED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IFLE → KILLED 7.7 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) changed conditional boundary to IFLT → KILLED
|
| 4786 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED
|
| 4787 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
|
| 4789 |
|
1.1 Location : parseEntityName Killed by : none changed conditional boundary → SURVIVED 2.2 Location : parseEntityName Killed by : none negated conditional → SURVIVED 3.3 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 4.4 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED 5.5 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 6.6 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 7.7 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 8.8 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 9.9 Location : parseEntityName Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4790 |
|
1.1 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE 2.2 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE 3.3 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → NO_COVERAGE
|
| 4792 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Replaced operate with second operand → KILLED 6.6 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadBuffer mutated with null check on object → SURVIVED 8.8 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED 9.9 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_quadCount mutated with null check on object → SURVIVED
|
| 4794 |
|
1.1 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : parseEntityName Killed by : async.TestEntityParsing.testEntitySkipping(async.TestEntityParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : parseEntityName Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currQuadBytes mutated with null check on object → SURVIVED
|
| 4815 |
|
1.1 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted -1 with 1 → KILLED 5.5 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED 8.8 Location : handlePartialCR Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 9.9 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 10.10 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 12.12 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4818 |
|
1.1 Location : handlePartialCR Killed by : none changed conditional boundary → SURVIVED 2.2 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 3.3 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 4.4 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputEnd mutated with null check on object → SURVIVED 5.5 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 6.6 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGE → KILLED 7.7 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 8.8 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 9.9 Location : handlePartialCR Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4819 |
|
1.1 Location : handlePartialCR Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePartialCR Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePartialCR Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePartialCR Killed by : none Bug fixed: CRCR replace with One, Substituted 0 with 1 → NO_COVERAGE 5.5 Location : handlePartialCR Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 6.6 Location : handlePartialCR Killed by : none replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
|
| 4821 |
|
1.1 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 0 with 1 → KILLED 5.5 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_pendingInput mutated with null check on object → SURVIVED
|
| 4822 |
|
1.1 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 10 with 1 → KILLED 5.5 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) negated conditional → KILLED 6.6 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPEQ → KILLED 10.10 Location : handlePartialCR Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 11.11 Location : handlePartialCR Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : handlePartialCR Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 13.13 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED
|
| 4823 |
|
1.1 Location : handlePartialCR Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : handlePartialCR Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : handlePartialCR Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : handlePartialCR Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 5.5 Location : handlePartialCR Killed by : none Replaced operate with second operand → NO_COVERAGE 6.6 Location : handlePartialCR Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE
|
| 4825 |
|
1.1 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currRow mutated with null check on object → SURVIVED 8.8 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_currRow mutated with null check on object → SURVIVED
|
| 4826 |
|
1.1 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 2.2 Location : handlePartialCR Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_rowStartOffset mutated with null check on object → SURVIVED
|
| 4827 |
|
1.1 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 6.6 Location : handlePartialCR Killed by : async.TestElementParsing.testParseElementsWithIllegalChars(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4843 |
|
1.1 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeUtf8_2 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeUtf8_2 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeUtf8_2 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4844 |
|
1.1 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) negated conditional → KILLED 11.11 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_2 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4845 |
|
1.1 Location : decodeUtf8_2 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_2 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_2 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_2 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_2 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : decodeUtf8_2 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : decodeUtf8_2 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : decodeUtf8_2 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4847 |
|
1.1 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 31 with 1 → KILLED 11.11 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 12.12 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 13.13 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testParseElementsWithUTF8Attrs(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 14.14 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testParseElementsWithUTF8Attrs(async.TestElementParsing) Replaced Shift Left with Shift Right → KILLED 15.15 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testParseElementsWithUTF8Attrs(async.TestElementParsing) Replaced bitwise AND with OR → KILLED 16.16 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Replaced bitwise OR with AND → KILLED 17.17 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : decodeUtf8_2 Killed by : async.TestElementParsing.testSkipElementsWithUTF8Attrs(async.TestElementParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4852 |
|
1.1 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : skipUtf8_2 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : skipUtf8_2 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : skipUtf8_2 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4853 |
|
1.1 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 10.10 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 11.11 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : skipUtf8_2 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : skipUtf8_2 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4854 |
|
1.1 Location : skipUtf8_2 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : skipUtf8_2 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : skipUtf8_2 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : skipUtf8_2 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : skipUtf8_2 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : skipUtf8_2 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : skipUtf8_2 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : skipUtf8_2 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4866 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4867 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4868 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 11.11 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4869 |
|
1.1 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_3 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : decodeUtf8_3 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4871 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 9.9 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 10.10 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 12.12 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4872 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced operate with second operand → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4873 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 11.11 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4874 |
|
1.1 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_3 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : decodeUtf8_3 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4876 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 9.9 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 10.10 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 11.11 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 12.12 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4877 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : none changed conditional boundary → SURVIVED 6.6 Location : decodeUtf8_3 Killed by : none negated conditional → SURVIVED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 9.9 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4878 |
|
1.1 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 55296 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_3 Killed by : none changed conditional boundary → NO_COVERAGE 6.6 Location : decodeUtf8_3 Killed by : none negated conditional → NO_COVERAGE 7.7 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 8.8 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 9.9 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 10.10 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 11.11 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 12.12 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4879 |
|
1.1 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE 11.11 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE 12.12 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 65535 with 1 → NO_COVERAGE 13.13 Location : decodeUtf8_3 Killed by : none changed conditional boundary → NO_COVERAGE 14.14 Location : decodeUtf8_3 Killed by : none changed conditional boundary → NO_COVERAGE 15.15 Location : decodeUtf8_3 Killed by : none changed conditional boundary → NO_COVERAGE 16.16 Location : decodeUtf8_3 Killed by : none negated conditional → NO_COVERAGE 17.17 Location : decodeUtf8_3 Killed by : none negated conditional → NO_COVERAGE 18.18 Location : decodeUtf8_3 Killed by : none negated conditional → NO_COVERAGE 19.19 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 20.20 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 21.21 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 22.22 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 23.23 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 24.24 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 25.25 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 26.26 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 27.27 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 28.28 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 29.29 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 30.30 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 31.31 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 32.32 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 33.33 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 34.34 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 35.35 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4884 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4890 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 11.11 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4891 |
|
1.1 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 8.8 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : decodeUtf8_3 Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : decodeUtf8_3 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 14.14 Location : decodeUtf8_3 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4893 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 11.11 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4894 |
|
1.1 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_3 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : decodeUtf8_3 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : decodeUtf8_3 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4896 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 5.5 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 9.9 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 10.10 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 11.11 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 12.12 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 13.13 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 14.14 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 15.15 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 16.16 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 15 with 1 → KILLED 17.17 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 12 with 1 → KILLED 18.18 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 19.19 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 20.20 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 21.21 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 22.22 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 23.23 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 24.24 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced Shift Left with Shift Right → KILLED 25.25 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 26.26 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise AND with OR → KILLED 27.27 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) Replaced bitwise OR with AND → KILLED 28.28 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 29.29 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 30.30 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 31.31 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 32.32 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4897 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 13 with 1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : none changed conditional boundary → SURVIVED 6.6 Location : decodeUtf8_3 Killed by : none negated conditional → SURVIVED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → SURVIVED 9.9 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 10.10 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 11.11 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → SURVIVED 12.12 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4898 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: CRCR replace with One, Substituted 55296 with 1 → KILLED 5.5 Location : decodeUtf8_3 Killed by : none changed conditional boundary → SURVIVED 6.6 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) negated conditional → KILLED 7.7 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 8.8 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPEQ → KILLED 9.9 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGE → KILLED 10.10 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 11.11 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testSkipLinefeeds(async.TestCharactersParsing) changed conditional boundary to IF_ICMPGT → KILLED 12.12 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → SURVIVED
|
| 4899 |
|
1.1 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 4.4 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 6.6 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 7.7 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 8.8 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 9.9 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 10.10 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 57344 with 1 → NO_COVERAGE 11.11 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 65534 with 1 → NO_COVERAGE 12.12 Location : decodeUtf8_3 Killed by : none Bug fixed: CRCR replace with One, Substituted 65535 with 1 → NO_COVERAGE 13.13 Location : decodeUtf8_3 Killed by : none changed conditional boundary → NO_COVERAGE 14.14 Location : decodeUtf8_3 Killed by : none changed conditional boundary → NO_COVERAGE 15.15 Location : decodeUtf8_3 Killed by : none changed conditional boundary → NO_COVERAGE 16.16 Location : decodeUtf8_3 Killed by : none negated conditional → NO_COVERAGE 17.17 Location : decodeUtf8_3 Killed by : none negated conditional → NO_COVERAGE 18.18 Location : decodeUtf8_3 Killed by : none negated conditional → NO_COVERAGE 19.19 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 20.20 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 21.21 Location : decodeUtf8_3 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 22.22 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 23.23 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 24.24 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPEQ → NO_COVERAGE 25.25 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 26.26 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 27.27 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGE → NO_COVERAGE 28.28 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 29.29 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 30.30 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 31.31 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPGT → NO_COVERAGE 32.32 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPLT → NO_COVERAGE 33.33 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 34.34 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE 35.35 Location : decodeUtf8_3 Killed by : none changed conditional boundary to IF_ICMPNE → NO_COVERAGE
|
| 4904 |
|
1.1 Location : decodeUtf8_3 Killed by : async.TestCharactersParsing.testLinefeeds(async.TestCharactersParsing) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4910 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4911 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4912 |
|
1.1 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_4 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : decodeUtf8_4 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : decodeUtf8_4 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4914 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 14.14 Location : decodeUtf8_4 Killed by : none Replaced Shift Left with Shift Right → SURVIVED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4915 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4916 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4917 |
|
1.1 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_4 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : decodeUtf8_4 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : decodeUtf8_4 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4919 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4920 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 1 with 1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 7.7 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputBuffer mutated with null check on object → SURVIVED 8.8 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED 9.9 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → SURVIVED
|
| 4921 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4922 |
|
1.1 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_4 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : decodeUtf8_4 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : decodeUtf8_4 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4927 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 65536 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 14.14 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|
| 4939 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4940 |
|
1.1 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 8.8 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with One, Substituted 2 with 1 → NO_COVERAGE 9.9 Location : decodeUtf8_4 Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : decodeUtf8_4 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : decodeUtf8_4 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : decodeUtf8_4 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 14.14 Location : decodeUtf8_4 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4942 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 7 with 1 → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 14.14 Location : decodeUtf8_4 Killed by : none Replaced Shift Left with Shift Right → SURVIVED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4943 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4944 |
|
1.1 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 3.3 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 4.4 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 5.5 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 6.6 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 7.7 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 8.8 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with One, Substituted 1 with 1 → NO_COVERAGE 9.9 Location : decodeUtf8_4 Killed by : none Replaced operate with second operand → NO_COVERAGE 10.10 Location : decodeUtf8_4 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 11.11 Location : decodeUtf8_4 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 12.12 Location : decodeUtf8_4 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 13.13 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 14.14 Location : decodeUtf8_4 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4946 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED
|
| 4947 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 192 with 1 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 128 with 1 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) negated conditional → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : none changed conditional boundary to IF_ICMPGE → SURVIVED 14.14 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPGT → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPLT → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) changed conditional boundary to IF_ICMPNE → KILLED
|
| 4948 |
|
1.1 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR Add One, Substituted 1 with 2 → NO_COVERAGE 2.2 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR sub One, Substituted 0 with -1 → NO_COVERAGE 3.3 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → NO_COVERAGE 4.4 Location : decodeUtf8_4 Killed by : none Bug fixed: CRCR replace with One, Substituted 255 with 1 → NO_COVERAGE 5.5 Location : decodeUtf8_4 Killed by : none Replaced bitwise AND with OR → NO_COVERAGE 6.6 Location : decodeUtf8_4 Killed by : none Bug fixed: Negate variable, Substituted -1 with 1 → NO_COVERAGE 7.7 Location : decodeUtf8_4 Killed by : none M1: field dereference on object com/fasterxml/aalto/async/AsyncByteBufferScanner and field_inputPtr mutated with null check on object → NO_COVERAGE 8.8 Location : decodeUtf8_4 Killed by : none removed call to com/fasterxml/aalto/async/AsyncByteBufferScanner::reportInvalidOther → NO_COVERAGE
|
| 4950 |
|
1.1 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 2.2 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 3.3 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR Add One, Substituted 1 with 2 → KILLED 4.4 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 5.5 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 6.6 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR sub One, Substituted 0 with -1 → KILLED 7.7 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 8.8 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 9.9 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with Zero, Substituted 2 with 0 → KILLED 10.10 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 6 with 1 → KILLED 11.11 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 63 with 1 → KILLED 12.12 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: CRCR replace with One, Substituted 65536 with 1 → KILLED 13.13 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Replaced operate with second operand → KILLED 14.14 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced Shift Left with Shift Right → KILLED 15.15 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise AND with OR → KILLED 16.16 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) Replaced bitwise OR with AND → KILLED 17.17 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 18.18 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 19.19 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testSkipWithSurrogate(async.TestSurrogates) Bug fixed: Negate variable, Substituted -1 with 1 → KILLED 20.20 Location : decodeUtf8_4 Killed by : async.TestSurrogates.testCdataWithSurrogate(async.TestSurrogates) replaced return of integer sized value with (x == 0 ? 1 : 0) → KILLED
|